浏览代码

terraform: disable terraform prompt in $HOME (#7227)

In the home directory there is a .terraform folder for modules but it is most likely not
an actual directory of terraform scripts. Therefore, this patch disables checking for workspace in the home directory.
Tristan Escalada 5 年之前
父节点
当前提交
9e14387408
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      plugins/terraform/terraform.plugin.zsh

+ 2 - 0
plugins/terraform/terraform.plugin.zsh

@@ -1,4 +1,6 @@
 function tf_prompt_info() {
+    # dont show 'default' workspace in home dir
+    [[ "$PWD" == ~ ]] && return
     # check if in terraform dir
     if [ -d .terraform ]; then
       workspace=$(terraform workspace show 2> /dev/null) || return