fix: remove \ before $

This commit is contained in:
phoenix
2025-04-17 11:56:35 +01:00
parent 17c641512f
commit 3eda82c89d

View File

@ -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