silence ssh-agent attempts

This commit is contained in:
Wryn Wagner 2021-04-12 11:47:52 -06:00
parent 4efb0fe8b0
commit 48f9732054

View File

@ -17,7 +17,7 @@ WRYN_SSH_ADD_CREDENTIALS() {
[ -f "$key.pub" ] \
&& echo $KEY_LIST | grep -q $(awk '{print $NF;}' $key.pub) \
|| echo $KEY_LIST | grep -q $key \
|| ssh-add "$key";
|| ssh-add "$key" >/dev/null 2>&1;
done
}