diff options
author | mail_redacted_for_web | 2025-03-15 21:15:26 +0100 |
---|---|---|
committer | mail_redacted_for_web | 2025-03-15 21:15:26 +0100 |
commit | e334235dc8247ae0cff5626b1c83f0cca85a36a7 (patch) | |
tree | 9d33588d94c6cdf2bdb54a45815782a68822b2c1 | |
parent | 672a8bda092a03eb93e068deb2cbdcf355b06c68 (diff) | |
download | dotfiles-e334235dc8247ae0cff5626b1c83f0cca85a36a7.tar.bz2 |
fix: then was missing
-rw-r--r-- | .bash/postexec.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bash/postexec.bash b/.bash/postexec.bash index 5164190..8beee31 100644 --- a/.bash/postexec.bash +++ b/.bash/postexec.bash @@ -3,7 +3,7 @@ if [ -n "$SSHENVFILE" ] && [ -r "$SSHENVFILE" ];then if source "$SSHENVFILE"; then case "$OSNAME" in 'sunos') - if echo "${SSHAGH[@]}"|tr ' ' '\n'|grep -E "^$(cat /etc/nodename)\$" + if echo "${SSHAGH[@]}"|tr ' ' '\n'|grep -E "^$(cat /etc/nodename)\$"; then add-sshagent-init fi ;; |