aboutsummaryrefslogtreecommitdiff
path: root/doc/gitian-building.md
diff options
context:
space:
mode:
authorJeremyRand <biolizard89@gmail.com>2016-05-05 23:08:47 +0000
committerJeremyRand <biolizard89@gmail.com>2016-05-05 23:08:47 +0000
commitb06f6a992b4a80c6a9ef2387bfd81e30a407b245 (patch)
tree7caa270814d13baed2ce8d063242d0d960504965 /doc/gitian-building.md
parent3b9a0bf41f2336b09e854522ab1ce6dcfc7a3050 (diff)
downloadbitcoin-b06f6a992b4a80c6a9ef2387bfd81e30a407b245.tar.xz
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.
Diffstat (limited to 'doc/gitian-building.md')
-rw-r--r--doc/gitian-building.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gitian-building.md b/doc/gitian-building.md
index 13f8ad316b..791f209bb1 100644
--- a/doc/gitian-building.md
+++ b/doc/gitian-building.md
@@ -443,8 +443,8 @@ Then when building, override the remote URLs that gbuild would otherwise pull fr
cd /some/root/path/
git clone https://github.com/bitcoin-core/bitcoin-detached-sigs.git
-BTCPATH=/some/root/path/bitcoin.git
-SIGPATH=/some/root/path/bitcoin-detached-sigs.git
+BTCPATH=/some/root/path/bitcoin
+SIGPATH=/some/root/path/bitcoin-detached-sigs
./bin/gbuild --url bitcoin=${BTCPATH},signature=${SIGPATH} ../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml
```