Skip to content

Commit

Permalink
blockMesh: Correct handling of the -case option
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Weller committed Jul 4, 2015
1 parent 61a1a14 commit 2f9138f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -126,13 +126,13 @@ int main(int argc, char *argv[])
)
{
dictPath =
runTime.path()/runTime.constant()
runTime.constant()
/regionPath/polyMesh::meshSubDir/dictName;
}
// Otherwise assume the dictionary is present in the system directory
else
{
dictPath = runTime.path()/runTime.system()/regionPath/dictName;
dictPath = runTime.system()/regionPath/dictName;
}

IOobject meshDictIO
Expand Down

0 comments on commit 2f9138f

Please sign in to comment.