Browse Source

Fix windows build script

import_zecw
adityapk00 6 years ago
parent
commit
32fec42390
  1. 1
      .gitignore
  2. 16
      src/scripts/mkwinrelease.ps1

1
.gitignore

@ -8,6 +8,7 @@ src/precompiled.h.cpp
.qmake.stash .qmake.stash
zec-qt-wallet zec-qt-wallet
zec-qt-wallet.vcxproj* zec-qt-wallet.vcxproj*
zec-qt-wallet.sln
zec-qt-wallet.pro.user zec-qt-wallet.pro.user
Makefile Makefile
Makefile.* Makefile.*

16
src/scripts/mkwinrelease.ps1

@ -4,7 +4,7 @@ if (-not (Test-Path env:APP_VERSION)) { echo "APP_VERSION is not set. Please set
$target="zec-qt-wallet-v$Env:APP_VERSION" $target="zec-qt-wallet-v$Env:APP_VERSION"
echo "Git Status" echo "Git Status"
$branch= &git branch $branch= &git branch | select -first 1
if ($branch -ne "* master") { if ($branch -ne "* master") {
echo "Not on master branch!" echo "Not on master branch!"
exit; exit;
@ -35,12 +35,12 @@ Copy-Item README.md release/$target | Out-Null
echo "Zipping" echo "Zipping"
Compress-Archive -LiteralPath release/$target -DestinationPath "release/Windows-$target.zip" Compress-Archive -LiteralPath release/$target -DestinationPath "release/Windows-$target.zip"
echo "Package Contents" #echo "Package Contents"
[Reflection.Assembly]::LoadWithPartialName('System.IO.Compression.FileSystem') #[Reflection.Assembly]::LoadWithPartialName('System.IO.Compression.FileSystem')
foreach($sourceFile in (Get-ChildItem "release/Windows-$target.zip")) #foreach($sourceFile in (Get-ChildItem "release/Windows-$target.zip"))
{ #{
[IO.Compression.ZipFile]::OpenRead($sourceFile.FullName).Entries.FullName | # [IO.Compression.ZipFile]::OpenRead($sourceFile.FullName).Entries.FullName |
%{ "$sourcefile`:$_" } # %{ "$sourcefile`:$_" }
} #}
echo "Done" echo "Done"
Loading…
Cancel
Save