release-process: Specify remote name in "git fetch"

Avoids "does not appear to be a git repository" error.

Fixes #24329
This commit is contained in:
Jeremy Rand 2022-02-13 06:02:25 +00:00
parent b6b7815ddc
commit 876b91c383
No known key found for this signature in database
GPG key ID: EB03139A459DD06E

View file

@ -97,7 +97,7 @@ Checkout the Bitcoin Core version you'd like to build:
pushd ./bitcoin
SIGNER='(your builder key, ie bluematt, sipa, etc)'
VERSION='(new version without v-prefix, e.g. 0.20.0)'
git fetch "v${VERSION}"
git fetch origin "v${VERSION}"
git checkout "v${VERSION}"
popd
```