From 718a7e95fa834170fc8c17a737ae24f505a3fd9d Mon Sep 17 00:00:00 2001 From: Botspot Date: Sat, 3 Jul 2021 17:09:08 -0500 Subject: [PATCH] updater: fix delimiter from '|' to '\n' I can't believe it took THIS long to spot this oversight. Fortunately the damage is minimised because this only affected NEW files in an update, not changed files. --- updater | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/updater b/updater index 47e26d4..ac69277 100755 --- a/updater +++ b/updater @@ -136,7 +136,8 @@ do if [ ! -f "${DIRECTORY}/${file}" ];then echo -e "\e[97m${file} does not exist locally.\e[39m Adding to updatable list." #in this case, add to updatable list - mainupdate="${mainupdate}|${file}" + mainupdate="${mainupdate} +${file}" elif [ ! -f "${DIRECTORY}/update/pi-apps/${file}" ];then echo -e "\e[97m${file} only exists locally.\e[39m Will not add to updatable list." #in this case, do not add to updatable list