parent
02eb548d5a
commit
0e399d47b9
1 changed files with 7 additions and 7 deletions
@ -1,11 +1,11 @@ |
|||||||
function tf_prompt_info() { |
function tf_prompt_info() { |
||||||
# dont show 'default' workspace in home dir |
# dont show 'default' workspace in home dir |
||||||
[[ "$PWD" == ~ ]] && return |
[[ "$PWD" != ~ ]] || return |
||||||
# check if in terraform dir |
# check if in terraform dir and file exists |
||||||
if [[ -d .terraform && -r .terraform/environment ]]; then |
[[ -d .terraform && -r .terraform/environment ]] || return |
||||||
workspace=$(cat .terraform/environment) || return |
|
||||||
echo "[${workspace}]" |
local workspace="$(< .terraform/environment)" |
||||||
fi |
echo "${ZSH_THEME_TF_PROMPT_PREFIX-[}${workspace:gs/%/%%}${ZSH_THEME_TF_PROMPT_SUFFIX-]}" |
||||||
} |
} |
||||||
|
|
||||||
alias tf='terraform' |
alias tf='terraform' |
||||||
|
|||||||
Loading…
Reference in new issue