Skip to content
Snippets Groups Projects
Commit a95ca829 authored by Mark Olesen's avatar Mark Olesen
Browse files

BUG: runParallel ignores presence of log file (closes #203)

- was a small typo
parent c3ec65d3
Branches
Tags
No related merge requests found
......@@ -54,7 +54,6 @@ getApplication()
runApplication()
{
LOG_NAME=
APP_RUN=
LOG_IGNORE=false
LOG_APPEND=false
......@@ -100,18 +99,18 @@ runApplication()
runParallel()
{
LOG_NAME=
APP_RUN=
# Store any parsed additional arguments e.g. decomposeParDict
APP_PARARGS=
LOG_IGNORE=false
LOG_APPEND=false
LOG_SUFFIX=
# Store any parsed additional arguments e.g. decomposeParDict
APP_PARARGS=
# Check the default decomposeParDict if available
nProcs=$(getNumberOfProcessors "system/decomposeParDict")
nProcs=$(getNumberOfProcessors system/decomposeParDict)
# Parse options and executable
while [ $# -gt 0 ] && [ -z "$APP_RUN" ] ; do
while [ $# -gt 0 ] && [ -z "$APP_RUN" ]; do
key="$1"
case "$key" in
-append|-a)
......@@ -144,7 +143,7 @@ runParallel()
shift
done
if [ -f log.$SUFFIX ] && [ "$LOG_IGNORE" = "false" ]
if [ -f log.$LOG_SUFFIX ] && [ "$LOG_IGNORE" = "false" ]
then
echo "$APP_NAME already run on $PWD:" \
"remove log file 'log.$LOG_SUFFIX' to re-run"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment