about summary refs log tree commit diff stats
path: root/profile
diff options
context:
space:
mode:
authorCase Duckworth2022-04-13 17:06:33 -0500
committerCase Duckworth2022-04-13 17:06:33 -0500
commit674bc087b4c8f950f0afde171668f81c10e0ca65 (patch)
treeac42d1cd3a6dd5caec5b13511bbef7767113e478 /profile
parentAdd reprofile() (diff)
downloadetc-674bc087b4c8f950f0afde171668f81c10e0ca65.tar.gz
etc-674bc087b4c8f950f0afde171668f81c10e0ca65.zip
Make keychain quiet
Diffstat (limited to 'profile')
-rw-r--r--profile/ssh-agent.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile/ssh-agent.sh b/profile/ssh-agent.sh index 8e478c2..7af5219 100644 --- a/profile/ssh-agent.sh +++ b/profile/ssh-agent.sh
@@ -4,7 +4,7 @@
4if type keychain > /dev/null 2>&1; then 4if type keychain > /dev/null 2>&1; then
5 # Save directory name in a variable (for ease of maintenance) 5 # Save directory name in a variable (for ease of maintenance)
6 export KEYCHAIN_HOME="$HOME/.keychain" 6 export KEYCHAIN_HOME="$HOME/.keychain"
7 eval $(keychain --eval --dir "$KEYCHAIN_HOME" --agents ssh) 7 eval $(keychain --eval --dir "$KEYCHAIN_HOME" --agents ssh -q)
8else 8else
9 eval $(ssh-agent -s) 9 eval $(ssh-agent -s)
10fi 10fi