Fix installer script

This commit is contained in:
Aditya Kulkarni
2019-02-20 10:53:50 -08:00
parent 7b06c099c3
commit 31f7b1eb8e
7 changed files with 12 additions and 8 deletions

View File

@@ -10,14 +10,14 @@ Head over to the releases page and grab the latest installers or binary. https:/
If you are on Debian/Ubuntu, please download the `.deb` package and install it. If you are on Debian/Ubuntu, please download the `.deb` package and install it.
``` ```
sudo dpkg -i linux-deb-zec-qt-wallet-v0.5.10.deb sudo dpkg -i linux-deb-zec-qt-wallet-v0.5.11.deb
sudo apt install -f sudo apt install -f
``` ```
Or you can download and run the binaries directly. Or you can download and run the binaries directly.
``` ```
tar -xvf zec-qt-wallet-v0.5.10.tar.gz tar -xvf zec-qt-wallet-v0.5.11.tar.gz
./zec-qt-wallet-v0.5.10/zec-qt-wallet ./zec-qt-wallet-v0.5.11/zec-qt-wallet
``` ```
### Windows ### Windows

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -64,10 +64,14 @@ $myhostname = (hostname) | Out-String -NoNewline
# Powershell seems not to be able to remove this directory for some reason! # Powershell seems not to be able to remove this directory for some reason!
# Remove-Item -Path /tmp/zqwbuild -Recurse -ErrorAction Ignore | Out-Null # Remove-Item -Path /tmp/zqwbuild -Recurse -ErrorAction Ignore | Out-Null
bash "rm -rf /tmp/zqwbuild" 2>&1 | Out-Null bash "rm -rf /tmp/zqwbuild" 2>&1 | Out-Null
New-Item -Path /tmp/zqwbuild -itemtype directory | Out-Null New-Item -Path /tmp/zqwbuild -itemtype directory -Force | Out-Null
Copy-Item src /tmp/zqwbuild/ -Recurse Copy-Item src /tmp/zqwbuild/ -Recurse -Force
Copy-Item res /tmp/zqwbuild/ -Recurse Copy-Item res /tmp/zqwbuild/ -Recurse -Force
Copy-Item release /tmp/zqwbuild/ -Recurse Copy-Item release /tmp/zqwbuild/ -Recurse -Force
# Remove some unnecessary stuff from the tmp directory to speed up copying
Remove-Item -Recurse -ErrorAction Ignore /tmp/zqwbuild/res/libsodium
ssh $winserver "scp -r ${myhostname}:/tmp/zqwbuild/* zqwbuild/" ssh $winserver "scp -r ${myhostname}:/tmp/zqwbuild/* zqwbuild/"
ssh $winserver "cd zqwbuild ; src/scripts/mkwininstaller.ps1 -version $version" >/dev/null ssh $winserver "cd zqwbuild ; src/scripts/mkwininstaller.ps1 -version $version" >/dev/null
if (!$?) { if (!$?) {

View File

@@ -1 +1 @@
#define APP_VERSION "0.5.9-androidbeta" #define APP_VERSION "0.5.11"