From ba797386f94cb88d6e201fb09124416420a2b377 Mon Sep 17 00:00:00 2001 From: William Lachance Date: Tue, 30 Mar 2021 11:57:59 -0400 Subject: [PATCH] Exit gracefully after `bqetl bootstrap` succeeds (#1928) It would previously try to run bqetl with no arguments, which led to confusing output. --- bqetl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bqetl b/bqetl index 90354ab61c..bbe97252d9 100755 --- a/bqetl +++ b/bqetl @@ -19,6 +19,8 @@ if [ "$CMD" == "bootstrap" ]; then fi venv/bin/pip install -r requirements.txt venv/bin/pip install -e . + echo "bqetl configured! It should now be ready for use." + exit 0 fi if [ ! -d "venv" ]; then