From f6361f67fef936eb447033893fda31547090a34d Mon Sep 17 00:00:00 2001 From: Alex Edwards Date: Tue, 26 Jan 2016 17:18:52 -0800 Subject: [PATCH] fixed -db-url flag as it now requires two dashes --db-url --- contrib/standup-db.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/standup-db.sh b/contrib/standup-db.sh index 11ee5c83..aa84c284 100644 --- a/contrib/standup-db.sh +++ b/contrib/standup-db.sh @@ -40,7 +40,7 @@ until $(curl --output /dev/null --silent --fail http://localhost:5557/health); d done # Create a client -eval "$(./bin/dexctl -db-url=$DEX_DB_URL new-client http://127.0.0.1:5555/callback)" +eval "$(./bin/dexctl --db-url=$DEX_DB_URL new-client http://127.0.0.1:5555/callback)" # Set up connectors DEX_CONNECTORS_FILE=$(mktemp /tmp/dex-conn.XXXXX) @@ -62,7 +62,7 @@ cat << EOF > $DEX_CONNECTORS_FILE ] EOF -./bin/dexctl -db-url=$DEX_DB_URL set-connector-configs $DEX_CONNECTORS_FILE +./bin/dexctl --db-url=$DEX_DB_URL set-connector-configs $DEX_CONNECTORS_FILE # Start the worker