From 461bf041c30964a780503ba4b5a39dd9aa83806c Mon Sep 17 00:00:00 2001 From: Tobias Reisinger Date: Thu, 26 Dec 2019 14:09:20 +0100 Subject: [PATCH] fix: wrong logic --- .profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.profile b/.profile index 07f1b2b..c0c47b8 100644 --- a/.profile +++ b/.profile @@ -9,7 +9,7 @@ PATH="/usr/local/sbin:/usr/sbin:/sbin:$PATH" [ -f "$HOME/.config/aliasrc" ] && source $HOME/.config/aliasrc -if ! [ -x "$(command -v gpgconf)" ]; then +if [ -x "$(command -v gpgconf)" ]; then export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) gpgconf --launch gpg-agent fi