From 29af843c9cffd09f5fed7b368e599e76ecc469b7 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 24 Dec 2023 23:43:06 +0100 Subject: [PATCH] Update ha_entrypoint_modif.sh --- .templates/ha_entrypoint_modif.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.templates/ha_entrypoint_modif.sh b/.templates/ha_entrypoint_modif.sh index e52ba557a..2ba29c103 100755 --- a/.templates/ha_entrypoint_modif.sh +++ b/.templates/ha_entrypoint_modif.sh @@ -10,7 +10,7 @@ set -e for folders in /default /defaults /etc; do if [ -d "$folders" ]; then - find "$folders" -type f -not -path '*/\.*' -exec grep -Il '.' {} \; -print0 | xargs -0 -d '\n' -L 1 dos2unix -k + find "$folders" -type f -not -path '*/\.*' -exec grep -Il '.' {} \; | xargs -d '\n' -L 1 dos2unix -k fi done