From bc784e7823661c1f097907a2cae8e85926777738 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Tue, 18 Mar 2025 18:01:00 +0100 Subject: [PATCH] chore: optional log [skip ci] --- utils.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils.sh b/utils.sh index b6518f5..bc184a8 100755 --- a/utils.sh +++ b/utils.sh @@ -9,7 +9,9 @@ ORG_NAME="${ORG_NAME:-VSCodium}" # All common functions can be added to this file apply_patch() { - echo applying patch: "$1"; + if [[ -z "$2" ]]; then + echo applying patch: "$1"; + fi # grep '^+++' "$1" | sed -e 's#+++ [ab]/#./vscode/#' | while read line; do shasum -a 256 "${line}"; done replace "s|!!APP_NAME!!|${APP_NAME}|g" "$1"