Fixed invalid example paths in gitian-building.md
The example local paths for "Building fully offline" have an extraneous ".git". This caused an error when trying to run gbuild, like this fatal: '/home/user/bitcoin.git' does not appear to be a git repository fatal: Could not read from remote repository. This commit fixes that.
This commit is contained in:
parent
3b9a0bf41f
commit
b06f6a992b
1 changed files with 2 additions and 2 deletions
|
@ -443,8 +443,8 @@ Then when building, override the remote URLs that gbuild would otherwise pull fr
|
||||||
cd /some/root/path/
|
cd /some/root/path/
|
||||||
git clone https://github.com/bitcoin-core/bitcoin-detached-sigs.git
|
git clone https://github.com/bitcoin-core/bitcoin-detached-sigs.git
|
||||||
|
|
||||||
BTCPATH=/some/root/path/bitcoin.git
|
BTCPATH=/some/root/path/bitcoin
|
||||||
SIGPATH=/some/root/path/bitcoin-detached-sigs.git
|
SIGPATH=/some/root/path/bitcoin-detached-sigs
|
||||||
|
|
||||||
./bin/gbuild --url bitcoin=${BTCPATH},signature=${SIGPATH} ../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml
|
./bin/gbuild --url bitcoin=${BTCPATH},signature=${SIGPATH} ../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue