Skip to content

Commit

Permalink
No cat, and hide errors for missing cache file
Browse files Browse the repository at this point in the history
  • Loading branch information
trobrock committed Jul 17, 2013
1 parent 00ccee1 commit 9a9e6e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/knife_ssh/knife_ssh.plugin.zsh
@@ -1,5 +1,5 @@
function knife_ssh() {
grep -q $1 ~/.knife_comp~ || rm -f ~/.knife_comp~;
grep -q $1 ~/.knife_comp~ 2> /dev/null || rm -f ~/.knife_comp~;
ssh $(knife node show $1 | awk '/IP:/{print $2}')
}

Expand All @@ -9,7 +9,7 @@ _knife_ssh() {
echo "\nGenerating ~/.knife_comp~..." >/dev/stderr
knife node list > ~/.knife_comp~
fi
compadd `cat ~/.knife_comp~`
compadd $(<~/.knife_comp~)
else
echo "Could not find knife" > /dev/stderr;
fi
Expand Down

0 comments on commit 9a9e6e9

Please sign in to comment.