Fix installer

This commit is contained in:
2021-10-22 16:52:07 -04:00
parent d59e9cfcc0
commit 1807714e26

View File

@@ -19,7 +19,7 @@ manual="README.html"
for homedir in /home/*; do for homedir in /home/*; do
remove=("manual.pdf" "manual.odt" "Notes.pdf" "Notes.odt" "$manual") remove=("manual.pdf" "manual.odt" "Notes.pdf" "Notes.odt" "$manual")
for f in "${remove[@]}"; do for f in "${remove[@]}"; do
[[ -e "${homedir}/Desktop/$f" ]] && echo "Removing ${homedir}/Desktop/$f" && rm -f "${homedir}/Desktop/$f" rm -f "${homedir}/Desktop/$f"
done done
ln -fs "$PWD/$manual" "${homedir}/Desktop/$manual" ln -fs "$PWD/$manual" "${homedir}/Desktop/$manual"
done done