From 5771ece9f5f3eaeb6e52d65a692f806cac29e59b Mon Sep 17 00:00:00 2001 From: Bryan Roessler Date: Fri, 22 Oct 2021 19:13:24 -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 b1ffdf12..722758d9 100755 --- a/script-install-manual-scripts +++ b/script-install-manual-scripts @@ -34,7 +34,7 @@ for homedir in /home/*; do for f in "${remove[@]}"; do rm -f "${homedir}/Desktop/$f" done - ln -fs "$manual" "${homedir}/Desktop/$manual" + [[ -d "$homedir/Desktop" ]] && ln -fs "$manual" "${homedir}/Desktop/$manual" done