From 3dc1da3524669f1a4a433a4600209ac692ca7a7a Mon Sep 17 00:00:00 2001 From: Pasquale Congiusti Date: Tue, 25 Jul 2023 14:23:11 +0200 Subject: [PATCH] fix(ci): update default runtime --- script/update_default_camel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/update_default_camel.sh b/script/update_default_camel.sh index ef4179512c..bb6bc73635 100755 --- a/script/update_default_camel.sh +++ b/script/update_default_camel.sh @@ -25,7 +25,7 @@ rm -rf /tmp/camel-k-runtime git clone --depth 1 https://github.com/apache/camel-k-runtime.git /tmp/camel-k-runtime ck_runtime_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout -f /tmp/camel-k-runtime/pom.xml) echo "INFO: last Camel K runtime version set at $ck_runtime_version" -sed -i "s/^RUNTIME_VERSION := .*$/RUNTIME_VERSION := $ck_runtime_version/" $location/Makefile +sed -i "s/^DEFAULT_RUNTIME_VERSION := .*$/DEFAULT_RUNTIME_VERSION := $ck_runtime_version/" $location/Makefile camel_version=$(grep -oPm1 "(?<=)[^<]+" /tmp/camel-k-runtime/pom.xml) rm -rf /tmp/camel-kamelets