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 /install.sh | |
parent | 7842108538fd5d1d8a2d0b367372f22ec2761c1d (diff) |
fix install.sh and uninstall.sh scripts to work with bare /bin/sh
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 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 |