Changeset 306 for trunk/src


Ignore:
Timestamp:
Nov 28, 2011, 7:28:31 PM (12 years ago)
Author:
gostiaux
Message:

bug if you do not launch uvmat from the uvmat dir corrected

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/check_files.m

    r305 r306  
    142142[status,~]=system('svn --help');
    143143if status==0
    144     [~,result]=system('svn info');
     144    [~,result]=system(['svn info ' dir_fct]);
    145145    t=regexp(result,'R.vision\s:\s(?<rev>\d+)','names');
    146146    svn_info.cur_rev=str2double(t.rev);
    147     [~,result]=system('svn info -r ''HEAD''');
     147    [~,result]=system(['svn info -r ''HEAD'' '  dir_fct]);
    148148    t=regexp(result,'R.vision\s:\s(?<rev>\d+)','names');
    149149    svn_info.rep_rev=str2double(t.rev);
    150     [~,result]=system('svn status');   
     150    [~,result]=system(['svn status'  dir_fct]);   
    151151    svn_info.status=result;
    152152    if svn_info.rep_rev>svn_info.cur_rev
Note: See TracChangeset for help on using the changeset viewer.