Changeset 56bc5e7 in sasview
- Timestamp:
- Nov 22, 2017 12:33:37 PM (7 years ago)
- Branches:
- master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- b6b81a3
- Parents:
- 1606b35
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
run.py
r1606b35 r56bc5e7 112 112 113 113 # Build project if the build directory does not already exist. 114 # PAK: with "update" we can always build since it is fast 115 if True or not os.path.exists(build_path): 114 if not os.path.exists(build_path): 116 115 import subprocess 117 116 with cd(root): 118 subprocess.call((sys.executable, "setup.py", "build" , "update"), shell=False)117 subprocess.call((sys.executable, "setup.py", "build"), shell=False) 119 118 120 119 # Put the source trees on the path
Note: See TracChangeset
for help on using the changeset viewer.