Skip to content
Snippets Groups Projects
Commit b91c59ae authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed bug introduced in 555cffc0.

parent 555cffc0
No related branches found
No related tags found
No related merge requests found
......@@ -15,10 +15,6 @@ if ~exist('isoctave','file')
p{end+1} = '/utilities/missing/isoctave';
end
if ~isoctave && (~exist('rows','file') || ~exist('columns','file'))
p{end+1} = '/utilities/missing/dims';
end
if ~exist('shiftS','file')
p{end+1} = '/utilities/missing/shiftS';
end
......@@ -30,3 +26,7 @@ end
% Set path
P = cellfun(@(c)[dates_src_root(1:end-1) c], p, 'uni', false);
addpath(P{:});
if ~isoctave && (~exist('rows','file') || ~exist('columns','file'))
addpath([dates_src_root(1:end-1) '/utilities/missing/dims']);
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment