From 97e87c5aafbe5f194443276137a70875c76a5089 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Sun, 13 Oct 2024 09:20:04 +0800 Subject: [PATCH] fix execution error --- scripts/release-lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release-lib.sh b/scripts/release-lib.sh index b709753459a6..6008c39cef48 100644 --- a/scripts/release-lib.sh +++ b/scripts/release-lib.sh @@ -123,7 +123,7 @@ function update_copyright() { DIR=$(dirname "$0") PDIR=$(dirname "$DIR") - if ! "docker build -t kong/update-copyright ${DIR} && docker run -v ${PDIR}:/workspace --rm kong/update-copyright" + if ! (docker build -t kong/update-copyright ${DIR} && docker run -v ${PDIR}:/workspace --rm kong/update-copyright) then die "Could not update copyright file. Check logs for missing licenses, add hardcoded ones if needed" fi