ops: Tweak build script to support tags

This commit is contained in:
wiz 2024-08-20 15:22:16 +09:00
parent 4e581347c8
commit ff9e2456b9
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

@ -40,7 +40,7 @@ update_repo()
git fetch origin || exit 1
for remote in origin;do
git remote add "${remote}" "https://github.com/${remote}/mempool" >/dev/null 2>&1
git fetch "${remote}" || exit 1
git fetch "${remote}" --tags || exit 1
done
if [ $(git tag -l "${REF}") ];then