From eaf5ff4f105bc4bcefb1b533b9db1afef566b993 Mon Sep 17 00:00:00 2001 From: Manevolent Date: Sat, 17 Dec 2022 01:24:52 -0700 Subject: [PATCH] Update run.sh --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index 99b770a..82678e1 100755 --- a/run.sh +++ b/run.sh @@ -46,12 +46,12 @@ do checkout_version=`cat version` if [ "$checkout_version" -gt "$current_version" ]; then echo "Updating to version $checkout_version..." - chmod +x build.sh && ./build.sh >> $log 2>&1 + chmod +x build.sh && ./build.sh if [ $? -eq 0 ]; then echo "Update completed successfully." echo $checkout_version > $version_file else - echo "Update failed; version was not updated. Trying again in $delay seconds. For more details, see $log" + echo "Update failed; version was not updated. Trying again in $delay seconds." sleep $delay continue fi