From d59e9cfcc0ee40ff772b58c84321772edc91d348 Mon Sep 17 00:00:00 2001 From: Bryan Roessler Date: Fri, 22 Oct 2021 16:50:14 -0400 Subject: [PATCH] Fix installer --- script-install-manual-scripts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-install-manual-scripts b/script-install-manual-scripts index c0ab6c84..1a69e63e 100755 --- a/script-install-manual-scripts +++ b/script-install-manual-scripts @@ -17,7 +17,7 @@ manual="README.html" [[ ! -f "$manual" ]] && echo "No manual found, skipping!" && exit 1 for homedir in /home/*; do - remove=("manual.pdf" "manual.odt" "Notes.pdf" "Notes.odt" "README.html") + remove=("manual.pdf" "manual.odt" "Notes.pdf" "Notes.odt" "$manual") for f in "${remove[@]}"; do [[ -e "${homedir}/Desktop/$f" ]] && echo "Removing ${homedir}/Desktop/$f" && rm -f "${homedir}/Desktop/$f" done