diff --git a/.gitignore b/.gitignore index 2747031..92e22e3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ src/precompiled.h.cpp .qmake.stash zec-qt-wallet zec-qt-wallet.vcxproj* +zec-qt-wallet.sln zec-qt-wallet.pro.user Makefile Makefile.* diff --git a/src/scripts/mkwinrelease.ps1 b/src/scripts/mkwinrelease.ps1 index 2cc2c39..af34195 100644 --- a/src/scripts/mkwinrelease.ps1 +++ b/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" echo "Git Status" -$branch= &git branch +$branch= &git branch | select -first 1 if ($branch -ne "* master") { echo "Not on master branch!" exit; @@ -35,12 +35,12 @@ Copy-Item README.md release/$target | Out-Null echo "Zipping" Compress-Archive -LiteralPath release/$target -DestinationPath "release/Windows-$target.zip" -echo "Package Contents" -[Reflection.Assembly]::LoadWithPartialName('System.IO.Compression.FileSystem') -foreach($sourceFile in (Get-ChildItem "release/Windows-$target.zip")) -{ - [IO.Compression.ZipFile]::OpenRead($sourceFile.FullName).Entries.FullName | - %{ "$sourcefile`:$_" } -} +#echo "Package Contents" +#[Reflection.Assembly]::LoadWithPartialName('System.IO.Compression.FileSystem') +#foreach($sourceFile in (Get-ChildItem "release/Windows-$target.zip")) +#{ +# [IO.Compression.ZipFile]::OpenRead($sourceFile.FullName).Entries.FullName | +# %{ "$sourcefile`:$_" } +#} echo "Done" \ No newline at end of file