aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2013-07-09 18:49:10 -0700
committerGavin Andresen <gavinandresen@gmail.com>2013-07-09 18:49:10 -0700
commite057486cdf4d931a950bef5d12003fda826a9819 (patch)
tree3ddb879d5c1ec0d5ae7533c3b2eab52c38455eae
parentb9e24d74a420a9fa11a4122fcc195f9805d39768 (diff)
parente9bfe6572900451e79fea7686625fd1a13eb9929 (diff)
downloadbitcoin-e057486cdf4d931a950bef5d12003fda826a9819.tar.xz
Merge pull request #2817 from Michagogo/release-process-followable-verbatim
Made the build/release process completable verbatim as listed in release-process.md
-rw-r--r--doc/release-process.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/release-process.md b/doc/release-process.md
index dc2101e1c1..7b0a73a81e 100644
--- a/doc/release-process.md
+++ b/doc/release-process.md
@@ -31,7 +31,7 @@ Release Process
export SIGNER=(your gitian key, ie bluematt, sipa, etc)
export VERSION=(new version, e.g. 0.8.0)
- cd ./gitian-builder
+ pushd ./gitian-builder
Fetch and build inputs: (first time, or when dependency versions change)
@@ -58,13 +58,14 @@ Release Process
./bin/gsign --signer $SIGNER --release ${VERSION} --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian.yml
pushd build/out
zip -r bitcoin-${VERSION}-linux-gitian.zip *
- mv bitcoin-${VERSION}-linux-gitian.zip ../../
+ mv bitcoin-${VERSION}-linux-gitian.zip ../../../
popd
./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-win32.yml
./bin/gsign --signer $SIGNER --release ${VERSION}-win32 --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-win32.yml
pushd build/out
zip -r bitcoin-${VERSION}-win32-gitian.zip *
- mv bitcoin-${VERSION}-win32-gitian.zip ../../
+ mv bitcoin-${VERSION}-win32-gitian.zip ../../../
+ popd
popd
Build output expected: