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