From 2d61e5fcf65fc2083c71c3e8ba6ff41e2434d9ae Mon Sep 17 00:00:00 2001 From: Shachar Snapiri Date: Wed, 9 Jan 2019 18:58:05 +0200 Subject: [PATCH] Fix default value syntax for docker script Default conf source dir in run_dragonflow.sh was with the wrong syntax. This causes the script to fail. Fixed the syntax to the correct one. Change-Id: I334f3161d62df2d1bc692a43c2d6eff740c0c92b --- tools/run_dragonflow.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run_dragonflow.sh b/tools/run_dragonflow.sh index 430863dce..253939e55 100755 --- a/tools/run_dragonflow.sh +++ b/tools/run_dragonflow.sh @@ -1,6 +1,6 @@ #!/bin/bash -CONF_SRC_DIR=${CONF_SRC_DIR:/opt/dragonflow/etc/standalone} +CONF_SRC_DIR=${CONF_SRC_DIR:-/opt/dragonflow/etc/standalone} VERB="" # First get all the arguments