Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sébastien Villemot
dseries
Commits
dc54c3fd
Commit
dc54c3fd
authored
Feb 14, 2018
by
Houtan Bastani
Browse files
add semicolon to suppress mkdir output on Octave
parent
91c50911
Changes
1
Hide whitespace changes
Inline
Side-by-side
externals/x13/installx13.m
View file @
dc54c3fd
...
@@ -2,7 +2,7 @@ function installx13()
...
@@ -2,7 +2,7 @@ function installx13()
% Installs CENSUS X13 binaries (Windows and Linux).
% Installs CENSUS X13 binaries (Windows and Linux).
% Copyright (C) 2017 Dynare Team
% Copyright (C) 2017
-2018
Dynare Team
%
%
% This code is free software: you can redistribute it and/or modify
% This code is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% it under the terms of the GNU General Public License as published by
...
@@ -26,13 +26,13 @@ if ~exist('x13.zip','file')
...
@@ -26,13 +26,13 @@ if ~exist('x13.zip','file')
end
end
unzip
(
'x13.zip'
);
unzip
(
'x13.zip'
);
if
ismac
()
if
ismac
()
mkdir
osx
mkdir
osx
;
movefile
(
'binaries/osx/*'
,
'./osx'
);
movefile
(
'binaries/osx/*'
,
'./osx'
);
elseif
isunix
()
elseif
isunix
()
mkdir
linux
mkdir
linux
;
movefile
(
'binaries/linux/*'
,
'./linux'
);
movefile
(
'binaries/linux/*'
,
'./linux'
);
elseif
ispc
()
elseif
ispc
()
mkdir
windows
mkdir
windows
;
movefile
(
'binaries/windows/*'
,
'./windows'
);
movefile
(
'binaries/windows/*'
,
'./windows'
);
else
else
error
(
'X13 is not available for the current platform!'
)
error
(
'X13 is not available for the current platform!'
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment