From 9619101c82d9018f8cded7be2f9c11cb9b6a8ef6 Mon Sep 17 00:00:00 2001 From: Botspot Date: Sun, 25 Jul 2021 16:21:40 -0500 Subject: [PATCH] manage: git clone -> git pull to check for updates --- manage | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/manage b/manage index c4740d6..456ce05 100755 --- a/manage +++ b/manage @@ -142,7 +142,7 @@ elif [ "$1" == 'install' ];then fi #analytics - "${DIRECTORY}/etc/bitlylink" "$app" install + "${DIRECTORY}/etc/bitlylink" "$app" install & #determine which script to run scriptname="$(script_name_cpu "$app")" #will be install, install-32, or install-64 @@ -206,7 +206,7 @@ elif [ "$1" == 'uninstall' ];then fi #analytics - "${DIRECTORY}/etc/bitlylink" "$app" uninstall + "${DIRECTORY}/etc/bitlylink" "$app" uninstall & #determine path for log file to be created logfile="${DIRECTORY}/logs/uninstall-incomplete-${app}.log" @@ -333,8 +333,17 @@ elif [ "$1" == 'check-all' ];then fi #end of checking for hidden flags - rm -rf "${DIRECTORY}/update" && mkdir "${DIRECTORY}/update" && cd "${DIRECTORY}/update" || error "failed to enter the update directory!" - git clone --depth=1 "$(cat "${DIRECTORY}/etc/git_url")" || error "failed to clone repository to the update directory!" + #if the updater script exists in update folder, then just git pull to save time + if [ -f "${DIRECTORY}/update/pi-apps/updater" ];then + cd "${DIRECTORY}/update/pi-apps" + git pull 1>&2 || rm -rf "${DIRECTORY}/update" + fi + #re-check and if updater script does not exist then do a git clone + if [ ! -f "${DIRECTORY}/update/pi-apps/updater" ];then + rm -rf "${DIRECTORY}/update" + mkdir -p "${DIRECTORY}/update" && cd "${DIRECTORY}/update" || error "failed to enter the update directory!" + git clone --depth=1 "$(cat "${DIRECTORY}/etc/git_url")" 1>&2|| error "failed to clone repository to the update directory!" + fi if [ $installedonly == 1 ];then #installedonly flag enabled. Remove apps that are uninstalled, disabled, or corrupted