Fix typos and cleanup

This commit is contained in:
Dimitris Apostolou
2018-11-17 23:06:55 +02:00
committed by GitHub
parent dd70553ae6
commit 472fe18af1
7 changed files with 14 additions and 14 deletions

View File

@@ -5,6 +5,6 @@ Priority: optional
Architecture: all
Depends: openssl (>= 1.0.0)
Maintainer: Aditya Kulkarni <zcash@adityapk.com>
Description: zec-qt-wallet is a full node and UI wallet for zcash.
zec-qt-wallet is a full node and UI wallet for zcash. It comes with
full support for shielded addresses and many apps for zcash.
Description: zec-qt-wallet is a full node and UI wallet for Zcash.
zec-qt-wallet is a full node and UI wallet for Zcash. It comes with
full support for shielded addresses and many apps for Zcash.

View File

@@ -1,6 +1,6 @@
[Desktop Entry]
Name=zec-qt-wallet
Comment=Full node and wallet for zcash
Comment=Full node and wallet for Zcash
GenericName=Wallet
Exec=/usr/local/bin/zec-qt-wallet
Icon=zec-qt-wallet.xpm

View File

@@ -1,4 +1,4 @@
# Unified build script for windows, linux and mac builder. Run on a windows machine inside powershell.
# Unified build script for Windows, Linux and Mac builder. Run on a Windows machine inside powershell.
param (
[Parameter(Mandatory=$true)][string]$version,
[Parameter(Mandatory=$true)][string]$prev,
@@ -49,4 +49,4 @@ if (! (Test-Path ./artifacts/linux-zec-qt-wallet-v$version.tar.gz) -or
Write-Host "[Error]"
exit 1;
}
Write-Host "[OK]"
Write-Host "[OK]"

View File

@@ -8,7 +8,7 @@ if [ -z $APP_VERSION ]; then echo "APP_VERSION is not set"; exit 1; fi
if [ -z $PREV_VERSION ]; then echo "PREV_VERSION is not set"; exit 1; fi
if [ -z $ZCASH_DIR ]; then
echo "ZCASH_DIR is not set. Please set it to the base directory of a zcash project with built zcash binaries."
echo "ZCASH_DIR is not set. Please set it to the base directory of a Zcash project with built Zcash binaries."
exit 1;
fi
@@ -157,7 +157,7 @@ echo -n "Configuring............"
make clean > /dev/null
rm -f zec-qt-wallet-mingw.pro
rm -rf release/
#Mingw seems to have trouble with precompiled heades, so strip that option from the .pro file
#Mingw seems to have trouble with precompiled headers, so strip that option from the .pro file
cat zec-qt-wallet.pro | sed "s/precompile_header/release/g" | sed "s/PRECOMPILED_HEADER.*//g" > zec-qt-wallet-mingw.pro
echo "[OK]"