From 564a60608ca3c21d474e27bb436b36ae86c12751 Mon Sep 17 00:00:00 2001 From: sed-i <82407168+sed-i@users.noreply.github.com> Date: Thu, 3 Feb 2022 02:15:54 -0500 Subject: [PATCH] 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. --- plugins/juju/juju.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "$@" }