Changeset cd4b1a4 in sasview
- Timestamp:
- Feb 17, 2015 3:20:52 AM (10 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- d7ee8b9b
- Parents:
- 43a31fd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/setup_exe.py
r4172557 rcd4b1a4 280 280 # Copying the images directory to the distribution directory. 281 281 for f in findall(images_dir): 282 if os.path.split(f)[0].count('.svn')==0:282 if not ".svn" in f 283 283 data_files.append(("images", [f])) 284 284 285 285 # Copying the HTML help docs 286 286 for f in findall(media_dir): 287 if os.path.split(f)[0].count('.svn')==0:287 if not ".svn" in f 288 288 data_files.append(("media", [f])) 289 289 290 290 # Copying the sample data user data 291 291 for f in findall(test_dir): 292 if os.path.split(f)[0].count('.svn')==0:292 if not ".svn" in f 293 293 data_files.append(("test", [f])) 294 294
Note: See TracChangeset
for help on using the changeset viewer.