diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-02-01 13:11:35 -0800 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-02-01 13:11:35 -0800 |
commit | 3d29d5d623c03a26177176a9b422cb00dedd9108 (patch) | |
tree | 1025cd4447c7c0b1e817c641a7b4fc4172337d92 | |
parent | 77052ab0f396507527d9b9063561fea92360c97d (diff) | |
parent | ced7f77df5f1dda55c8e87d0033640e3ee565e84 (diff) |
Merge pull request #2257 from fanquake/docs
Update default URL in verify.sh
-rw-r--r-- | contrib/macdeploy/notes.txt | 2 | ||||
-rwxr-xr-x | contrib/verifysfbinaries/verify.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/macdeploy/notes.txt b/contrib/macdeploy/notes.txt index a3f0b5447d..3d74901437 100644 --- a/contrib/macdeploy/notes.txt +++ b/contrib/macdeploy/notes.txt @@ -5,7 +5,7 @@ Python 2.7 and make it your default Python installation. You will need the appscript package for the fancy disk image creation to work. Install it by invoking "sudo easy_install appscript". -Ths script should be invoked in the target directory like this: +This script should be invoked in the target directory like this: $source_dir/contrib/macdeploy/macdeployqtplus Bitcoin-Qt.app -add-qt-tr da,de,es,hu,ru,uk,zh_CN,zh_TW -dmg -fancy $source_dir/contrib/macdeploy/fancy.plist -verbose 2 During the process, the disk image window will pop up briefly where the fancy diff --git a/contrib/verifysfbinaries/verify.sh b/contrib/verifysfbinaries/verify.sh index 336de3ec1f..149b7b394c 100755 --- a/contrib/verifysfbinaries/verify.sh +++ b/contrib/verifysfbinaries/verify.sh @@ -18,7 +18,7 @@ WORKINGDIR="/tmp/bitcoin" TMPFILE="hashes.tmp" #this URL is used if a version number is not specified as an argument to the script -SIGNATUREFILE="http://downloads.sourceforge.net/project/bitcoin/Bitcoin/bitcoin-0.7.1/test/SHA256SUMS.asc" +SIGNATUREFILE="http://downloads.sourceforge.net/project/bitcoin/Bitcoin/bitcoin-0.7.2/SHA256SUMS.asc" SIGNATUREFILENAME="SHA256SUMS.asc" RCSUBDIR="test/" @@ -81,7 +81,7 @@ if [ $RET -ne 0 ]; then #and notify the user if it's bad echo "Bad signature." elif [ $RET -eq 2 ]; then - #or if a gpg error has occured + #or if a gpg error has occurred echo "gpg error. Do you have Gavin's code signing key installed?" fi |