view +mpm/verify.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 647cd9e354bf
line wrap: on
line source

% Check if the current proejct settings are correct
% The right version is in the path
% The right version is at the top of the path
%
% Useful to put at the top of some scripts
function verify(d)
    if ~exist('d', 'var') || isempty(d)
        d = pwd;
    end

    m = mpm.MatlabPathManager();
    if ~m.verify(d)
        error('Subpaths are not correctly loaded. Try running mpm.checkin()');
    end
end