Exit gracefully after `bqetl bootstrap` succeeds (#1928)

It would previously try to run bqetl with no arguments, which led
to confusing output.
This commit is contained in:
William Lachance 2021-03-30 11:57:59 -04:00 коммит произвёл GitHub
Родитель ac8f40f8d1
Коммит ba797386f9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 0 удалений

2
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