Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dseries
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sébastien Villemot
dseries
Commits
dc54c3fd
Commit
dc54c3fd
authored
7 years ago
by
Houtan Bastani
Browse files
Options
Downloads
Patches
Plain Diff
add semicolon to suppress mkdir output on Octave
parent
91c50911
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
externals/x13/installx13.m
+4
-4
4 additions, 4 deletions
externals/x13/installx13.m
with
4 additions
and
4 deletions
externals/x13/installx13.m
+
4
−
4
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!'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment