diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-07 18:36:38 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-07 18:36:38 -0800 |
commit | 04f47b77d6d8c058a923ac6d85b1fdc762edebad (patch) | |
tree | 1b651494cb6d943cfba1317fd1b2df5054be615c /git-maintenance | |
parent | c034306d75dc64c08f9e09242ac1b77a4b561a85 (diff) | |
download | standingwithresilience-04f47b77d6d8c058a923ac6d85b1fdc762edebad.tar.gz standingwithresilience-04f47b77d6d8c058a923ac6d85b1fdc762edebad.zip |
small store fix
Diffstat (limited to 'git-maintenance')
-rwxr-xr-x | git-maintenance/store.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-maintenance/store.sh b/git-maintenance/store.sh index 9c24a50..b6f87ff 100755 --- a/git-maintenance/store.sh +++ b/git-maintenance/store.sh @@ -67,7 +67,7 @@ do # need to decrypt to compare content. if [ "$(curl "$URLPFX"/"$fn" | decrypt | $TAR -xvOf - "$packfile" | sha256sum)" = "$(cat "$packfile" | sha256sum)" ]; then echo "$fn MATCHES DOWNLOAD CONTENT ($packfile)" - mv -v encrypted/"$fn" encrypted.bak + mv -fv encrypted/"$fn" encrypted.bak else echo "$fn FAILED GET MATCH REMOTELY ($packfile)" fi |