From 3169d014a3896b10967a430544e72f8eae6e08ed 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