Skip to content
Snippets Groups Projects
Commit 1ee3a09e authored by brinn's avatar brinn
Browse files

change: make datamover.sh more error tolerant by ignoring a prefix "--" to any command

SVN: 2130
parent c1d6299a
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,10 @@ else
JAVA_BIN="java"
fi
case "$1" in
command=$1
# ensure that we ignore a possible prefix "--" for any command
command="${command#--*}"
case "$command" in
start)
echo -n "Starting Datamover "
......
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