From 501aa51876acfaba3fe2497b574437d666deb67c Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 20 Jul 2024 01:03:20 +0200 Subject: [PATCH] Fix string formatting --- scripts/Common/OS/users.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Common/OS/users.fish b/scripts/Common/OS/users.fish index 2815ee06..c9fe0b8a 100644 --- a/scripts/Common/OS/users.fish +++ b/scripts/Common/OS/users.fish @@ -19,7 +19,7 @@ for name in (echo "$users" | jq '.[]' --raw-output0 | string split0) ) --groups (getUserConfig groups --apply 'builtins.concatStringsSep ","') \ "$name" - echo "Please Choose a New Password for User \`$name\`" + echo "Please Choose a New Password for User `$name`" while ! sudo passwd "$name" echo "An error occurred! Please try again."