From 3eda82c89d5403fde492681231549597807c01ff Mon Sep 17 00:00:00 2001 From: phoenix Date: Thu, 17 Apr 2025 11:56:35 +0100 Subject: [PATCH] fix: remove \ before $ --- ssh/secure-ssh-wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh/secure-ssh-wrapper.sh b/ssh/secure-ssh-wrapper.sh index 9584fff..d718b6f 100644 --- a/ssh/secure-ssh-wrapper.sh +++ b/ssh/secure-ssh-wrapper.sh @@ -1,5 +1,5 @@ #!/bin/bash -if ! /etc/ssh-client/ssh_blocker.sh "\$@"; then +if ! /etc/ssh-client/ssh_blocker.sh "$@"; then echo "❌ Blocked by ssh_blocker.sh" exit 1 fi