summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-10-11 09:15:54 +0200
committerAnton Khirnov <anton@khirnov.net>2022-10-11 09:15:54 +0200
commite97b98d7c3117f2aee7349fb17f58492bcafb8d2 (patch)
tree7ccdfdfb3e382a4a09e3cf9ea5acdb2b1dc13560
parent29479acee5d761738978a0ab3d6d0bf68b3fb2ea (diff)
bin/ssh_sk_add: fix showing ssh-add output
-rwxr-xr-xbin/ssh_sk_add2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ssh_sk_add b/bin/ssh_sk_add
index 24079e4..e8bb1af 100755
--- a/bin/ssh_sk_add
+++ b/bin/ssh_sk_add
@@ -4,5 +4,5 @@ output=$(ssh-add -K 2>&1)
if [ $? -eq 0 ]; then
notify-send -u low "FIDO keys loaded" "${output}"
else
- notify-send -u critical "Error adding FIDO2 keys to SSH agent" "${err_output}"
+ notify-send -u critical "Error adding FIDO2 keys to SSH agent" "${output}"
fi