[AIRFLOW-6820] fixup! fix unbound variable (#7459)

This commit is contained in:
Jarek Potiuk 2020-02-19 03:25:00 +01:00 коммит произвёл GitHub
Родитель 24f9f11775
Коммит d2ab8b8f5f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -17,6 +17,7 @@
# under the License.
function assert_in_container() {
AIRFLOW_CI_VERBOSE=${AIRFLOW_CI_VERBOSE:="false"}
if [[ ! -f /.dockerenv ]]; then
echo >&2
echo >&2 "You are not inside the Airflow docker container!"
@ -29,7 +30,7 @@ function assert_in_container() {
}
function in_container_script_start() {
if [[ ${AIRFLOW_CI_VERBOSE:="false"} == "true" ]]; then
if [[ ${AIRFLOW_CI_VERBOSE} == "true" ]]; then
set -x
fi
}