MatrixBerryCore
issvn.m
Go to the documentation of this file.
1 function isPos=issvn(pathStr)
2 if nargin==0
3  pathStr=fileparts(mfilename('fullpath'));
4 end
5 svnVersionStr=mxberry.dev.scm.subversion.getrevisionbypath(...
6  pathStr,'ignoreErrors',true);
7 isPos=isempty(regexpi(svnVersionStr,'unversioned|exported'));
function issvn(in pathStr)