From 3b838c21cc79aa8e11df27164edfab889696f690 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 24 Dec 2023 20:07:15 +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 2ba29c103..ea670c966 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 '.' {} \; | xargs -d '\n' -L 1 dos2unix -k + find "$folders" -type f -not -path '*/\.*' -exec grep -Il '.' {} \ -print0; | xargs -0 -d '\n' -L 1 dos2unix -k fi done