From ca6df488c554c72df2a36b62c89ade4c1303fb25 Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 21 Aug 2021 21:56:42 +0900 Subject: [PATCH] Fix missing fetch command in upgrade script --- production/mempool-upgrade-all | 1 + 1 file changed, 1 insertion(+) diff --git a/production/mempool-upgrade-all b/production/mempool-upgrade-all index a9a13fefc..41b7d7e9d 100755 --- a/production/mempool-upgrade-all +++ b/production/mempool-upgrade-all @@ -20,6 +20,7 @@ update_repo() echo "[*] Upgrading ${site} to ${REF}" cd "$HOME/${site}" || exit 1 + git fetch origin || exit 1 for remote in mempool MiguelMedeiros knorrium;do git remote add "${remote}" "https://github.com/${remote}/mempool" >/dev/null 2>&1 git fetch "${remote}" || exit 1