This is an automated email from the ASF dual-hosted git repository.

ash pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 323319c  Fix `breeze flags` command. (#10766)
323319c is described below

commit 323319c33f8084620b8825372193b46689305e3c
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
---
 breeze | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/breeze b/breeze
index 7230c6e..b9638e5 100755
--- a/breeze
+++ b/breeze
@@ -695,7 +695,7 @@ function breeze::parse_arguments() {
         -o "${_BREEZE_GETOPT_SHORT_OPTIONS:=}" \
         -l "${_BREEZE_GETOPT_LONG_OPTIONS:=}" \
         --name "$CMDNAME" -- "$@"); then
-        flags
+        breeze::flags
         exit 1
     fi
 
@@ -999,7 +999,7 @@ function breeze::parse_arguments() {
             break
             ;;
         *)
-            flags
+            breeze::flags
             echo >&2
             echo >&2 "ERROR: Unknown flag ${1}"
             echo >&2
@@ -1181,7 +1181,7 @@ function breeze::parse_arguments() {
             command_to_run="toggle_suppress_asciiart"
             ;;
         flags)
-            flags
+            breeze::flags
             exit 0
             ;;
         help)

Reply via email to