diff options
author | Alan Pearce | 2017-05-18 16:25:21 +0200 |
---|---|---|
committer | Alan Pearce | 2017-05-18 16:25:21 +0200 |
commit | d0ce60d5743b4d90e154960ab884a486607a4ec6 (patch) | |
tree | 327e6f5f03e432d5128eeb593f318fef044cae22 | |
parent | 49aafb7531cd3d6a5885859b1a56509d45f5e990 (diff) | |
download | dotfiles-d0ce60d5743b4d90e154960ab884a486607a4ec6.tar.lz dotfiles-d0ce60d5743b4d90e154960ab884a486607a4ec6.tar.zst dotfiles-d0ce60d5743b4d90e154960ab884a486607a4ec6.zip |
zsh: Fix incorrect function declaration
I'm surprised this wasn't a syntax error
-rw-r--r-- | zsh/.config/zsh/.zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index a0340e1..1d827a2 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -254,7 +254,7 @@ then bindkey '^x^k' anyframe-widget-kill fi -function function eb-active-environment () { +function eb-active-environment () { aws elasticbeanstalk describe-environments | grep $(dig +short $1 CNAME) | cut -f10 } |