remove unicode

This commit is contained in:
Patrick Schleizer 2022-06-08 09:04:03 -04:00
parent fcaec49675
commit 55d16e1602
No known key found for this signature in database
GPG key ID: CB8D50BB77BB3C48
3 changed files with 3 additions and 3 deletions

View file

@ -464,7 +464,7 @@ set_file_perms() {
parse_config_folder() {
# Query contents of password and group databases only once and buffer them
#
# If we dont buffer we sometimes get incorrect results when checking for entries using
# If we don't buffer we sometimes get incorrect results when checking for entries using
# `if getent passwd | grep -q '^root:'; …` since `grep` exits after the first match in
# this case causing `getent` to receive SIGPIPE, which then fails the pipeline since
# `set -o pipefail` is set for this script.