From 3acaa93b14a90da2a1ea5cf9bad0610ece8fe123 Mon Sep 17 00:00:00 2001 From: agryphus Date: Mon, 23 Oct 2023 23:40:29 -0400 Subject: [PATCH] Fixed error in if statement --- .config/zsh/.zprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index 998ac7d..8c1900a 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -14,7 +14,7 @@ setopt hist_verify # show command with history expansion to user befo unsetopt ksharrays # 0-indexing arrays breaks highlighting # Start gpg agent -if [ -z "$(pidof gpg-agent)" ]; +if [ -z "$(pidof gpg-agent)" ]; then unset SSH_AGENT_PID export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)" eval $(gpg-agent --daemon)