Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
OpenFOAM-plus
Commits
ca3f2951
Commit
ca3f2951
authored
May 25, 2017
by
mattijs
Browse files
BUG: argList: -decomposeParDict handling in combination with -case.
Related to
#482
but this one is the handling inside argList.
parent
a8510763
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/global/argList/argList.C
View file @
ca3f2951
...
...
@@ -673,6 +673,17 @@ void Foam::argList::parse
adjustOpt
=
true
;
source
=
source
/
"decomposeParDict"
;
}
if
(
!
source
.
isAbsolute
()
&&
!
(
source
.
size
()
&&
source
[
0
]
==
'.'
)
)
{
source
=
rootPath_
/
globalCase_
/
source
;
adjustOpt
=
true
;
}
// Could also check for absolute path, but shouldn't be needed
if
(
adjustOpt
)
{
...
...
Write
Preview
Markdown
is supported
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