From 9da22880a7950a9c05915d2754660ac9b5a1ae5d Mon Sep 17 00:00:00 2001 From: casjay Date: Sun, 3 Sep 2023 23:56:52 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rootfs/usr/local/etc/docker/functions/entrypoint.sh --- rootfs/usr/local/etc/docker/functions/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootfs/usr/local/etc/docker/functions/entrypoint.sh b/rootfs/usr/local/etc/docker/functions/entrypoint.sh index 9184959..a89930a 100755 --- a/rootfs/usr/local/etc/docker/functions/entrypoint.sh +++ b/rootfs/usr/local/etc/docker/functions/entrypoint.sh @@ -264,7 +264,7 @@ __cron() { } # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - __replace() { - local search="$1" replace="$2" file="${3:$2}" + local search="$1" replace="$2" file="${3:-$2}" [ -e "$file" ] || return 1 grep -s -qR -- "$search" "$file" &>/dev/null && __sed "$search" "$replace" "$file" || return 0 grep -s -qR -- "$replace" "$file" && printf '%s\n' "Changed $search to $replace in $file" && return 0 || { @@ -273,7 +273,7 @@ __replace() { } # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - __find_replace() { - local search="$1" replace="$2" file="${3:$2}" + local search="$1" replace="$2" file="${3:-$2}" [ -e "$file" ] || return 1 grep -s -qR -- "$search" "$file" &>/dev/null || return 0 find "$file" -type f -not -path '.git*' -exec sed -i "s|$search|$replace|g" {} \;