diff options
author | sed-i <82407168+sed-i@users.noreply.github.com> | 2022-02-03 02:15:54 -0500 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2022-02-10 11:42:23 +0100 |
commit | 564a60608ca3c21d474e27bb436b36ae86c12751 (patch) | |
tree | bdbf6390cf2d07b67a49146ff68971504519bbe6 /plugins/juju | |
parent | cdd2d6efc612b75577db49604eeb7dc35ba5f9b5 (diff) | |
download | zsh-564a60608ca3c21d474e27bb436b36ae86c12751.tar.gz zsh-564a60608ca3c21d474e27bb436b36ae86c12751.tar.bz2 zsh-564a60608ca3c21d474e27bb436b36ae86c12751.zip |
style(juju)!: don't show storage status in `wjst` for consistency (#10426)
BREAKING CHANGE: `wjst` will no longer show storage in the status
output. This is done for consistency with the `jst` and `jsts`
aliases.
Diffstat (limited to 'plugins/juju')
-rw-r--r-- | plugins/juju/juju.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/juju/juju.plugin.zsh b/plugins/juju/juju.plugin.zsh index 81fcd6376..408692dc7 100644 --- a/plugins/juju/juju.plugin.zsh +++ b/plugins/juju/juju.plugin.zsh @@ -164,6 +164,6 @@ jreld() { wjst() { local interval="${1:-5}" shift $(( $# > 0 )) - watch -n "$interval" --color juju status --relations --storage --color "$@" + watch -n "$interval" --color juju status --relations --color "$@" } |