From 817653120cf2e67f606915fc51fa726c0a56d7f5 Mon Sep 17 00:00:00 2001 From: "Jean (east-high-Nerd)" Date: Mon, 21 Jul 2025 13:36:44 -0400 Subject: [PATCH] Added missing backslash to command run in created script --- post-inst.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post-inst.sh b/post-inst.sh index 7866ad6..800226d 100755 --- a/post-inst.sh +++ b/post-inst.sh @@ -208,7 +208,7 @@ chown -R ${USERNAME}:${USERNAME} /home/${USERNAME} sudo -u ${USERNAME} cp -a /etc/skel/. /home/${USERNAME} -if [[ ! -z "$(find -P /home/${USERNAME}/ | grep '\.face')" ]]; then +if [[ ! -z "\$(find -P /home/${USERNAME}/ | grep '\.face')" ]]; then find -P /home/${USERNAME}/ | grep '\.face' | xargs -d '\n' -I {} rm {} fi