Changeset 660 for trunk/src/check_files.m
- Timestamp:
- Jul 5, 2013, 11:15:09 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/check_files.m
r659 r660 192 192 193 193 %% check dates of compilation 194 currentdir=pwd;195 cd(pathuvmat)196 list_compile=dir('*.sh');197 for ilist=1:numel(list_compile)198 mfile=regexprep(list_compile(ilist).name,'.sh$','.m');199 if exist(mfile,'file')200 datfile=dir(mfile);201 if ~isempty(datfile) && isfield(datfile,'datenum') && datfile.datenum>list_compile(ilist).datenum202 checkmsg=[checkmsg;{[list_compile(ilist).name ' needs to be updated by compile_functions']}];203 end204 end205 end206 cd(currentdir)207 194 % currentdir=pwd; 195 % cd(pathuvmat) 196 % list_compile=dir('*.sh'); 197 % for ilist=1:numel(list_compile) 198 % mfile=regexprep(list_compile(ilist).name,'.sh$','.m'); 199 % if exist(mfile,'file') 200 % datfile=dir(mfile); 201 % if ~isempty(datfile) && isfield(datfile,'datenum') && datfile.datenum>list_compile(ilist).datenum 202 % checkmsg=[checkmsg;{[list_compile(ilist).name ' needs to be updated by compile_functions']}]; 203 % end 204 % end 205 % end 206 % cd(currentdir) 207
Note: See TracChangeset
for help on using the changeset viewer.