This is an automated email from the ASF dual-hosted git repository.
dimberman pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v1-10-test by this push:
new 118faaf Fix `breeze flags` command. (#10766)
118faaf is described below
commit 118faafa69b229974d3ff388ff2177984b36c842
Author: Ash Berlin-Taylor <[email protected]>
AuthorDate: Sun Sep 6 12:32:32 2020 +0100
Fix `breeze flags` command. (#10766)
This was missed in #10670
(cherry picked from commit 323319c33f8084620b8825372193b46689305e3c)
---
breeze | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/breeze b/breeze
index 1a072c4..116e253 100755
--- a/breeze
+++ b/breeze
@@ -723,7 +723,7 @@ function breeze::parse_arguments() {
-o "${_breeze_getopt_short_options:=}" \
-l "${_breeze_getopt_long_options:=}" \
--name "$CMDNAME" -- "$@"); then
- flags
+ breeze::flags
exit 1
fi
@@ -1016,7 +1016,7 @@ function breeze::parse_arguments() {
break
;;
*)
- flags
+ breeze::flags
echo >&2
echo >&2 "ERROR: Unknown flag ${1}"
echo >&2
@@ -1188,7 +1188,7 @@ function breeze::parse_arguments() {
command_to_run="toggle_suppress_asciiart"
;;
flags)
- flags
+ breeze::flags
exit 0
;;
help)