Changeset 735
- Timestamp:
- 06/03/09 07:18:11 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/utils/Nightly/nightlyrun.m
r733 r735 28 28 29 29 %Go through list of decks, and run the deck runme.m files package by package. 30 for i=2:length(list)-1, 31 eval(['cd ' list{i}]); 32 if nargin==1 33 runme(varargin{1}); 34 else 35 runme({'macayeal'}); 36 runme({'ice'}); 37 runme({'cielo_serial'}); 38 runme({'cielo_parallel'}); 30 packages={'macayeal','ice','cielo_serial','cielo_parallel'}; 31 for i=1:length(packages), 32 for j=2:length(list)-1, 33 eval(['cd ' list{j}]); 34 if nargin==1 35 runme(varargin{1}); 36 else 37 runme({packages{i}}); 38 end 39 cd .. 39 40 end 40 cd ..41 41 end 42 42
Note:
See TracChangeset
for help on using the changeset viewer.