Skip to content
Snippets Groups Projects
Commit dc54c3fd authored by Houtan Bastani's avatar Houtan Bastani
Browse files

add semicolon to suppress mkdir output on Octave

parent 91c50911
Branches
No related tags found
No related merge requests found
...@@ -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!')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment