ops: Remove fork repos from upgrade script

This commit is contained in:
wiz 2023-03-02 19:30:02 +09:00
parent dfcbaabeda
commit ec0d8b7c48
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

@ -38,7 +38,7 @@ update_repo()
cd "$HOME/${site}" || exit 1
git fetch origin || exit 1
for remote in origin hunicus mononaut;do
for remote in origin;do
git remote add "${remote}" "https://github.com/${remote}/mempool" >/dev/null 2>&1
git fetch "${remote}" || exit 1
done