Mercurial > repos > public > matlab_path_manager
view +mpm/checkout.m @ 21:02c290e2018c
Refactor ui functions to use the MPM class. Not tested
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 17 Sep 2018 15:49:39 +0200 |
parents | 309cc6c0cd75 |
children | 01e81c77bca1 |
line wrap: on
line source
% Checkout a projects subpaths from the matlab path function checkout(projectFolder) if ~exist('projectFolder', 'var') || isempty(projectFolder) projectFolder = pwd; end m = mpm.MatlabPathManager(); m.checkout(projectFolder); end