浏览代码

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.
sed-i 2 年之前
父节点
当前提交
564a60608c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/juju/juju.plugin.zsh

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