Skip to content

Commit

Permalink
Fix broken gitian-build for OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
sn-ntu committed Sep 18, 2017
1 parent 0f649b4 commit 9c867f9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions contrib/verifybinaries/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ function clean_up {
done
}

WORKINGDIR="/tmp/bitcoin"
WORKINGDIR="/tmp/zcoin"
TMPFILE="hashes.tmp"

SIGNATUREFILENAME="SHA256SUMS.asc"
RCSUBDIR="test/"
BASEDIR="https://bitcoin.org/bin/"
VERSIONPREFIX="bitcoin-core-"
VERSIONPREFIX="zcoin-core-"
RCVERSIONSTRING="rc"

if [ ! -d "$WORKINGDIR" ]; then
Expand Down
8 changes: 4 additions & 4 deletions share/qt/Info.plist.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@
<string>????</string>

<key>CFBundleExecutable</key>
<string>Bitcoin-Qt</string>
<string>Zcoin-Qt</string>

<key>CFBundleName</key>
<string>Bitcoin-Qt</string>
<string>Zcoin-Qt</string>

<key>LSHasLocalizedDisplayName</key>
<true/>

<key>CFBundleIdentifier</key>
<string>org.bitcoinfoundation.Bitcoin-Qt</string>
<string>io.zcoin.Zcoin-Qt</string>

<key>CFBundleURLTypes</key>
<array>
Expand All @@ -49,7 +49,7 @@
<string>org.bitcoin.BitcoinPayment</string>
<key>CFBundleURLSchemes</key>
<array>
<string>bitcoin</string>
<string>zcoin</string>
</array>
</dict>
</array>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ static void InitMessage(const std::string &message)
*/
static std::string Translate(const char* psz)
{
return QCoreApplication::translate("bitcoin-core", psz).toStdString();
return QCoreApplication::translate("zcoin-core", psz).toStdString();
}

static QString GetLangTerritory()
Expand Down

0 comments on commit 9c867f9

Please sign in to comment.