fix build scripts

This commit is contained in:
bdr
2018-10-16 21:00:47 -07:00
parent 66d2773863
commit c40785ce28
2 changed files with 11 additions and 7 deletions

View File

@@ -18,7 +18,12 @@ nmake *>$null
New-Item release/$target -itemtype directory | Out-Null
Move-Item release/zcash-qt-wallet.exe release/$target | Out-Null
echo "Copying"
& "$Env:QT_STATIC\bin\windeployqt.exe" release/$target/zcash-qt-wallet.exe *>$null
Copy-Item LICENSE release/$target | Out-Null
Copy-Item README.md release/$target | Out-Null
echo "Zipping"
Compress-Archive -LiteralPath release/$target -DestinationPath "release/$target.zip"
Compress-Archive -LiteralPath release/$target -DestinationPath "release/$target.zip"
echo "Done"