From 24fffe75a9a59f6056b80e76e743b16c84048917 Mon Sep 17 00:00:00 2001 From: Bryan Roessler Date: Fri, 22 Oct 2021 18:59:33 -0400 Subject: [PATCH] Fix installer --- script-install-manual-scripts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-install-manual-scripts b/script-install-manual-scripts index b317f9e3..23ddf646 100755 --- a/script-install-manual-scripts +++ b/script-install-manual-scripts @@ -16,14 +16,14 @@ is_root install -m 644 ./functions /usr/local/bin/ -for script in script-*; do +for script in ./script-*; do cp -f "$script" /usr/local/bin/ done # Install manual manual="$README.html" -[[ ! -f "$manual" ]] && echo "No manual found, skipping!" && exit 1 +[[ ! -f "./$manual" ]] && echo "No manual found, skipping!" && exit 1 for homedir in /home/*; do remove=("manual.pdf" "manual.odt" "Notes.pdf" "Notes.odt" "$manual") for f in "${remove[@]}"; do