Skip to content

Commit

Permalink
Update Windows build script to build installer using Inno Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanwhite committed Feb 6, 2014
1 parent 81f83a8 commit 7810e50
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions build_win
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
#setup
python setup.py install
rm -rf windows
mkdir windows
python setup.py py2exe
mv dist/retriever.exe windows/
rm -rf build dist
mkdir packages

#create distributable version
python setup.py py2exe

#package distributable installer
ISCC.exe retriever_installer.iss

#cleanup
mv Output/RetrieverSetup.exe packages
rm -rf build dist Output

0 comments on commit 7810e50

Please sign in to comment.