Update updater

This commit is contained in:
Locria Cyber 2023-10-01 08:41:44 +00:00
parent a0d863859c
commit 3bbc55c56e
Signed by: iacore
GPG key ID: F8C16E5157A63006

View file

@ -4,13 +4,14 @@ cd (dirname (status -f))/..
set -l old_hash (git rev-parse HEAD)
while true
git pull
git pull 2>&1 1>/tmp/status-updater-git-output
or break
set new_hash (git rev-parse HEAD)
if test $old_hash != $new_hash
set old_hash $new_hash
cat /tmp/status-updater-git-output
proto/deploy
end
sleep 60
end