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

Merge branch 'x13_space_path' into 'master'

x13: allow for Windows paths with spaces

See merge request !49
parents b7ca9c3e add28d04
No related branches found
No related tags found
1 merge request!49x13: allow for Windows paths with spaces
Pipeline #8875 passed
......@@ -31,7 +31,11 @@ if ~exist(x13b, 'file')
end
% Run spc file.
[errorflag, msg] = system(sprintf('%s %s', x13b, basename));
if ispc
[errorflag, msg] = system(sprintf('"%s" %s', x13b, basename));
else
[errorflag, msg] = system(sprintf('%s %s', x13b, basename));
end
if errorflag
skipline()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment