Mercurial > repos > public > matlab_path_manager
view +mpm/checkin.m @ 30:d9f899b1dfd0
Add status command and make subpathIsActive a static method
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 18 Sep 2018 14:15:23 +0200 |
parents | 02c290e2018c |
children | 01e81c77bca1 |
line wrap: on
line source
% Checkin a projects subpaths to the matlab path function checkin(projectFolder) if ~exist('projectFolder', 'var') || isempty(projectFolder) projectFolder = pwd; end m = mpm.MatlabPathManager(); m.checkin(projectFolder); end