view +mpm/verify.m @ 27:05a8b30ee4a7

Make loaded paths persistent across matlab restarts
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 18 Sep 2018 13:03:53 +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