Changeset 3388337 in sasview
- Timestamp:
- Apr 16, 2018 4:27:27 PM (7 years ago)
- Branches:
- ticket-1094-headless
- Children:
- aca687a
- Parents:
- 94f074c4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
run.py
rbc8b8a1 r3388337 67 67 68 68 69 def prepare( ):69 def prepare(rebuild=True): 70 70 # Don't create *.pyc files 71 71 sys.dont_write_bytecode = True … … 113 113 # Build project if the build directory does not already exist. 114 114 # PAK: with "update" we can always build since it is fast 115 if Trueor not os.path.exists(build_path):115 if rebuild or not os.path.exists(build_path): 116 116 import subprocess 117 117 build_cmd = [sys.executable, "setup.py", "build", "update"]
Note: See TracChangeset
for help on using the changeset viewer.