fix(update)r: on git error, sleep

This commit is contained in:
Locria Cyber 2023-10-20 08:27:52 +00:00
parent 55d28230cc
commit 9f5eeebc23
Signed by: iacore
GPG key ID: F8C16E5157A63006

View file

@ -5,7 +5,10 @@ cd (dirname (status -f))/..
set -l old_hash (git rev-parse HEAD)
while true
git pull 2>&1 1>/tmp/status-updater-git-output
or break
or begin
sleep 60
continue
end
set new_hash (git rev-parse HEAD)
if test $old_hash != $new_hash
set old_hash $new_hash