Skip to content
Snippets Groups Projects
Commit bc524fc7 authored by Ger van Diepen's avatar Ger van Diepen
Browse files

bug 1207:

An empty wd gave problems in startdistproc
parent c8026989
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,9 @@ if test $# != 0; then
wd=$1
shift
fi
if test "$wd" = ""; then
wd="..." # an empty wd fails in startdistproc
fi
logfile=
if test $# != 0; then
logfile=$1
......
......@@ -50,7 +50,7 @@ psnbase=`basename $psn`
. $lroot/lofarinit.sh
# Get the data set name and the directory name of it.
if test "$wd" = ""; then
if test "$wd" = "" -o "$wd" = "..."; then
wd=`dirname "$msn"`
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment