diff options
author | Himbeer <himbeerserverde@gmail.com> | 2024-02-17 18:33:21 +0100 |
---|---|---|
committer | Himbeer <himbeerserverde@gmail.com> | 2024-02-17 18:33:21 +0100 |
commit | 4ecf3e6e5f52f9cbe5675955810d65ec18b1271f (patch) | |
tree | a4c10e4c9a1c730a6fef03a84ee66213402da20f | |
parent | 7842108538fd5d1d8a2d0b367372f22ec2761c1d (diff) |
fix install.sh and uninstall.sh scripts to work with bare /bin/sh
-rwxr-xr-x | install.sh | 2 | ||||
-rwxr-xr-x | uninstall.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ source /srv/www/lib.sh -FILES=$(get_files) +FILES=`get_files` for FILE in ${FILES}; do ln -sf "/srv/www/sys/${FILE}" "/${FILE}" done diff --git a/uninstall.sh b/uninstall.sh index 3fbaaad..7b94197 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -2,7 +2,7 @@ source /srv/www/lib.sh -FILES=$(get_files) +FILES=`get_files` for FILE in ${FILES}; do rm "/${FILE}" done |