This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 3c39b5d446bbc6974a7b655163240de7017f33ca Author: Vladimir Mikhaylov <[email protected]> AuthorDate: Sat Feb 27 17:15:49 2021 +0300 Fix breeze redirect on macOS (#14506) (cherry picked from commit f9cc775adc0dff49b0e288d8f2745bf097017321) --- breeze | 2 ++ 1 file changed, 2 insertions(+) diff --git a/breeze b/breeze index 124ed85..bc63046 100755 --- a/breeze +++ b/breeze @@ -24,7 +24,9 @@ AIRFLOW_SOURCES="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" if [[ ${BREEZE_REDIRECT=} == "" ]]; then mkdir -p "${AIRFLOW_SOURCES}"/logs export BREEZE_REDIRECT="true" + set +u "${0}" "${@}" 2>&1 | tee "${AIRFLOW_SOURCES}"/logs/breeze.out + set -u exit fi
