Fix case expected for XCOM_PUSH (#575)

and add spaces to avoid issues with empty variables
This commit is contained in:
Daniel Thorn 2019-12-04 12:35:26 -08:00 коммит произвёл GitHub
Родитель 77946b4d0b
Коммит e11d009aac
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -29,7 +29,7 @@ elif [ "$1" = "query" ]; then
# to
# bq query [options] < FILE
exec bq "${@:1:$#-1}" < "${@: -1}"
elif ["$XCOM_PUSH" = "True"]; then
elif [ "$XCOM_PUSH" = "true" ]; then
# KubernetesPodOperator will extract the contents of /airflow/xcom/return.json as an xcom
# if the xcom_push parameter is true
mkdir -p /airflow/xcom/ && touch /airflow/xcom/return.json