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

- was a small typo
This commit is contained in:
Mark Olesen
2016-08-02 18:31:50 +02:00
parent c3ec65d35b
commit a95ca8293a

View File

@ -54,7 +54,6 @@ getApplication()
runApplication() runApplication()
{ {
LOG_NAME=
APP_RUN= APP_RUN=
LOG_IGNORE=false LOG_IGNORE=false
LOG_APPEND=false LOG_APPEND=false
@ -100,18 +99,18 @@ runApplication()
runParallel() runParallel()
{ {
LOG_NAME=
APP_RUN= APP_RUN=
# Store any parsed additional arguments e.g. decomposeParDict
APP_PARARGS=
LOG_IGNORE=false LOG_IGNORE=false
LOG_APPEND=false LOG_APPEND=false
LOG_SUFFIX= LOG_SUFFIX=
# Store any parsed additional arguments e.g. decomposeParDict
APP_PARARGS=
# Check the default decomposeParDict if available # Check the default decomposeParDict if available
nProcs=$(getNumberOfProcessors "system/decomposeParDict") nProcs=$(getNumberOfProcessors system/decomposeParDict)
# Parse options and executable # Parse options and executable
while [ $# -gt 0 ] && [ -z "$APP_RUN" ] ; do while [ $# -gt 0 ] && [ -z "$APP_RUN" ]; do
key="$1" key="$1"
case "$key" in case "$key" in
-append|-a) -append|-a)
@ -144,7 +143,7 @@ runParallel()
shift shift
done done
if [ -f log.$SUFFIX ] && [ "$LOG_IGNORE" = "false" ] if [ -f log.$LOG_SUFFIX ] && [ "$LOG_IGNORE" = "false" ]
then then
echo "$APP_NAME already run on $PWD:" \ echo "$APP_NAME already run on $PWD:" \
"remove log file 'log.$LOG_SUFFIX' to re-run" "remove log file 'log.$LOG_SUFFIX' to re-run"