From 38bc39eb05c0ff929dee0dc9f29e04e6166b05c9 Mon Sep 17 00:00:00 2001 From: Franscobec Date: Sat, 31 Jan 2026 22:23:36 -0500 Subject: [PATCH] Fix find cmd --- updatescripts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updatescripts.sh b/updatescripts.sh index f8e5c32..46e5b5e 100644 --- a/updatescripts.sh +++ b/updatescripts.sh @@ -36,7 +36,7 @@ updatescripts(){ if [ ! -f /.SSH/script/ ]; then mkdir /.SSH/script fi -find /.SSH/script -name *.sh -delete +find /.SSH/script -name "*.sh" -delete wget -q https://git.franscorack.com/Franscobec/AutoremakeSSH/raw/branch/main/renewkeys.sh -O /.SSH/script/renewkeys.sh wget -q https://git.franscorack.com/Franscobec/AutoremakeSSH/raw/branch/main/deploy-newssh.sh -O /.SSH/script/deploy-newssh.sh wget -q https://git.franscorack.com/Franscobec/AutoremakeSSH/raw/branch/main/autoremakekeys.sh -O /.SSH/script/autoremakekeys.sh