Skip to content
Snippets Groups Projects
Commit abe2f13c authored by Johannes Pfeifer's avatar Johannes Pfeifer
Browse files

select_x13_binary.m: use direct path under Windows

parent 581c420f
Branches master
No related tags found
No related merge requests found
Pipeline #8603 passed
......@@ -23,8 +23,13 @@ if nargin < 1
warn_only = false;
end
dseries_src_root = strrep(which('initialize_dseries_class'),'initialize_dseries_class.m','');
dseries_x13_root = sprintf('%s%s%s%s%s%s%s', dseries_src_root, '..', filesep(), 'externals', filesep(), 'x13', filesep());
if ispc()
dseries_src_root = strrep(which('initialize_dseries_class'),'src\initialize_dseries_class.m','');
dseries_x13_root = sprintf('%s%s%s%s%s', dseries_src_root,'externals', filesep(), 'x13', filesep());
else
dseries_src_root = strrep(which('initialize_dseries_class'),'initialize_dseries_class.m','');
dseries_x13_root = sprintf('%s%s%s%s%s%s%s', dseries_src_root, '..', filesep(), 'externals', filesep(), 'x13', filesep());
end
if ismac()
x13_binary = sprintf('%s%s%s', dseries_x13_root, 'macOS', filesep());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment