Browse Source

Merge branch 'master' of github.com:adityapk00/zec-qt-wallet

import_zecw
Aditya Kulkarni 6 years ago
parent
commit
32fde229c4
  1. 8
      src/scripts/mkwinrelease.ps1

8
src/scripts/mkwinrelease.ps1

@ -3,6 +3,14 @@ if (-not (Test-Path env:APP_VERSION)) { echo "APP_VERSION is not set. Please set
$target="zec-qt-wallet-v$Env:APP_VERSION"
echo "Git Status"
$branch= &git branch
if ($branch -ne "* master") {
echo "Not on master branch!"
exit;
}
git pull
echo "Cleaning"
nmake clean *>$null
Remove-Item -Path debug -Recurse | Out-Null

Loading…
Cancel
Save