Ignore:
Timestamp:
Feb 16, 2014, 9:09:13 AM (10 years ago)
Author:
sommeria
Message:

improve check svn with command "&"
improve import config in series

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/check_files.m

    r705 r709  
    167167        svn_info.cur_rev=str2double(t.rev); %version nbre of the current package
    168168    end
    169     [tild,result]=system(['svn info -r ''HEAD'' '  pathuvmat]);
     169    [tild,result]=system(['svn info -r ''HEAD'' '  pathuvmat ' &']);
    170170    t=regexp(result,'R.vision\s*:\s*(?<rev>\d+)','names');
    171171    if ~isempty(t)
    172172        svn_info.rep_rev=str2double(t.rev); % version nbre available on the svn repository
    173173    end
    174     [tild,result]=system(['svn status '  pathuvmat]);
     174    [tild,result]=system(['svn status '  pathuvmat ' &']);% '&' prevents the program to stop when the system asks password
    175175    svn_info.status=result;
    176176    checkmsg =[checkmsg {['SVN revision : ' num2str(svn_info.cur_rev)]}];%display version nbre of the current uvmat package
Note: See TracChangeset for help on using the changeset viewer.