From 79c7765224d82850a421e4e5e6eddaa1787d23fc Mon Sep 17 00:00:00 2001 From: Didier Date: Mon, 6 Mar 2023 13:45:20 +0100 Subject: [PATCH] feat: compatibility script --- compatibility/fedora.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 compatibility/fedora.sh diff --git a/compatibility/fedora.sh b/compatibility/fedora.sh new file mode 100755 index 0000000..18dbe37 --- /dev/null +++ b/compatibility/fedora.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +export SUDO=sudo + +export PM=dnf +export PM_INSTALL=install +export PM_NOCONFIRM=-y + +[ -f ./sync.sh ] && ./sync.sh $@ || (cd .. && ./sync.sh $@) \ No newline at end of file