Allow ssh module to run on OSX

This commit is contained in:
Kaleb Elwert 2017-05-05 09:58:19 -07:00
parent 6975b119b6
commit 658fffb3a6

View file

@ -6,7 +6,7 @@
#
# Return if requirements are not found.
if [[ "$OSTYPE" == darwin* ]] || (( ! $+commands[ssh-agent] )); then
if (( ! $+commands[ssh-agent] )); then
return 1
fi