diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2020-01-02 21:23:16 +0000 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2020-01-02 21:23:16 +0000 |
commit | 5e1b5fe911d4805133357e329d009f998300867d (patch) | |
tree | dff1a7d12784fa9cf689452f0a122c14c3c63550 /misc/completion/be.zsh | |
parent | adee3a503a9b07a73676e65df3af2c9abc8f2acf (diff) | |
parent | 320908419788ca67f81cb869bed7249dab1be8a4 (diff) | |
download | bugseverywhere-5e1b5fe911d4805133357e329d009f998300867d.tar.gz |
Merge branch '2dd5488e-2053-4a16-a853-d7cc7bd48831' into 'master'
Remove serve-storage and HTTP storage driver
See merge request bugseverywhere/bugseverywhere!10
Diffstat (limited to 'misc/completion/be.zsh')
-rw-r--r-- | misc/completion/be.zsh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/misc/completion/be.zsh b/misc/completion/be.zsh index 36cfddc..dee8017 100644 --- a/misc/completion/be.zsh +++ b/misc/completion/be.zsh @@ -21,7 +21,6 @@ __be_commands () { merge:'Merge duplicate bugs' new:'Create a new bug' remove:'Remove (delete) a bug and its comments' - serve:'Serve bug directory storage over HTTP' set:'Change bug directory settings' severity:'Change a bug’s severity level' show:'Show a particular bug, comment, or combination of both' @@ -226,21 +225,6 @@ _be-remove () { && return 0 } -_be-serve () { - local curcontext="$curcontext" state line expl ret=1 - - _arguments -C \ - '(-h --help)'{-h,--help}'[Print a help message]' \ - '--complete[Print a list of possible completions]' \ - '--port=-[Bind server to port]' \ - '--host=-[Set host string]' \ - '(-r --read-only)'{-r,--read-only}'[Disable operations that require writing]' \ - '(-n --notify)'{-n,--notify=-}'[Send notification emails for changes]' \ - '(-s --ssl)'{-s,--ssl}'[Use CherryPy to serve HTTPS (HTTP over SSL/TLS)]' \ - '(-a --auth)'{-a,--auth=-}'[Require authentication]' \ - && return 0 -} - _be-set () { local curcontext="$curcontext" state line expl ret=1 |