From e3e780831015b1110d0f17e450822f25530d080d Mon Sep 17 00:00:00 2001 From: Ark74 Date: Tue, 19 Sep 2023 12:36:50 -0600 Subject: [PATCH] config: update to enable sed_csum empty path input. --- helpers/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/config b/helpers/config index 2ddc5ec..33df5ce 100755 --- a/helpers/config +++ b/helpers/config @@ -267,5 +267,5 @@ remove_patch(){ } sed_csum() { - grep -rl "$1" "$3" | xargs -r /bin/sed -i "s|$1|$2|" + grep -rl "$1" "${3:-"./"}" | xargs -r /bin/sed -i "s|$1|$2|" }