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