mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
Fix wrong $GNUPGHOME usage in gpg-agent plugin (#6403)
$GNUPGHOME variable was used incorrectly and caused a grep error when set.
This commit is contained in:
parent
7a7480b987
commit
2c87f85ad5
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ if [ ! -S $GPG_AGENT_SOCKET ]; then
|
|||
fi
|
||||
|
||||
# Set SSH to use gpg-agent if it is configured to do so
|
||||
GNUPGCONFIG=${GNUPGHOME:-"$HOME/.gnupg/gpg-agent.conf"}
|
||||
GNUPGCONFIG="${GNUPGHOME:-"$HOME/.gnupg"}/gpg-agent.conf"
|
||||
if [ -r "$GNUPGCONFIG" ] && grep -q enable-ssh-support "$GNUPGCONFIG"; then
|
||||
unset SSH_AGENT_PID
|
||||
export SSH_AUTH_SOCK=$GPG_AGENT_SOCKET
|
||||
|
|
Loading…
Reference in a new issue