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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Pfeifer
dseries
Commits
abe2f13c
Commit
abe2f13c
authored
1 year ago
by
Johannes Pfeifer
Browse files
Options
Downloads
Patches
Plain Diff
select_x13_binary.m: use direct path under Windows
Related to
Dynare/dynare#1878 (comment 18606)
parent
581c420f
Branches
master
No related tags found
No related merge requests found
Pipeline
#8603
passed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/utilities/x13/select_x13_binary.m
+7
-2
7 additions, 2 deletions
src/utilities/x13/select_x13_binary.m
with
7 additions
and
2 deletions
src/utilities/x13/select_x13_binary.m
+
7
−
2
View file @
abe2f13c
...
...
@@ -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
());
...
...
This diff is collapsed.
Click to expand it.
Johannes Pfeifer
@JohannesPfeifer
mentioned in issue
Dynare/dynare#1878 (closed)
·
1 year ago
mentioned in issue
Dynare/dynare#1878 (closed)
mentioned in issue Dynare/dynare#1878
Toggle commit list
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