浏览代码

fix(aws): allow non-space characters in profile names (#11040)

Hans Donner 1 年之前
父节点
当前提交
0726c1099f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/aws/aws.plugin.zsh

+ 1 - 1
plugins/aws/aws.plugin.zsh

@@ -147,7 +147,7 @@ function aws_change_access_key() {
 
 function aws_profiles() {
   [[ -r "${AWS_CONFIG_FILE:-$HOME/.aws/config}" ]] || return 1
-  grep --color=never -Eo '\[.*\]' "${AWS_CONFIG_FILE:-$HOME/.aws/config}" | sed -E 's/^[[:space:]]*\[(profile)?[[:space:]]*([-_[:alnum:]\.@]+)\][[:space:]]*$/\2/g'
+  grep --color=never -Eo '\[.*\]' "${AWS_CONFIG_FILE:-$HOME/.aws/config}" | sed -E 's/^[[:space:]]*\[(profile)?[[:space:]]*([^[:space:]]+)\][[:space:]]*$/\2/g'
 }
 
 function _aws_profiles() {