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.
This commit is contained in:
sed-i 2022-02-03 02:15:54 -05:00 committed by Marc Cornellà
parent cdd2d6efc6
commit 564a60608c
No known key found for this signature in database
GPG Key ID: 0314585E776A9C1B

View File

@ -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 "$@"
}