Skip to content

Commit

Permalink
Add a build script
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaily committed Dec 5, 2018
1 parent 8380501 commit b08a51f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions create-release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

read -p "Please remove any previous 'release' folder before continuing..."

mkdir release

cp NegativeScreen/bin/Release/NegativeScreen.exe release/NegativeScreenX86.exe
cp NegativeScreen/bin/x64/Release/NegativeScreen.exe release/NegativeScreen.exe
cp CHANGELOG.txt release/
cp LICENSE.txt release/
cp README.md release/

zip -j Binary.zip release/*

read -p "Now generating the chocolatey package. Press enter to proceed..."
choco.exe pack Chocolatey/negativescreen.nuspec --out=Chocolatey/

0 comments on commit b08a51f

Please sign in to comment.