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

This commit is contained in:
Aditya Kulkarni 2018-10-28 08:24:58 -07:00
commit 32fde229c4
1 changed files with 8 additions and 0 deletions

View File

@ -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