Skip to content
Snippets Groups Projects
Commit ba737155 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Changed build_windows.py to work outside of project directory.

parent e9693b11
Branches
Tags
No related merge requests found
Breakpoints_v2.xcbkptlist
*.xcuserstate
*.pyc
*~
/dstatInterface/dist/
/dstatInterface/build/
\ No newline at end of file
#!/usr/bin/env python
__requires__ = 'PyInstaller==2.1'
import PyInstaller.main as pyi
import os, sys
os.chdir(os.path.dirname(sys.argv[0]))
import PyInstaller.main as pyi #For some reason, it gets the path here, so working dir must be set first
pyi.run(['interface_test.spec'])
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment