From 9612d0112cdd4379a4682a89622f45da10a785b2 Mon Sep 17 00:00:00 2001 From: Thomas Fossati Date: Fri, 23 Aug 2024 18:35:35 +0200 Subject: [PATCH] fix: install the latest cocli in the native deployment too The deployment.sh script install a version of cocli that is not compatible with the new CoRIM template format. This brings parity between native and docker deployments. Signed-off-by: Thomas Fossati --- deployments/native/deployment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments/native/deployment.sh b/deployments/native/deployment.sh index 62c5ef14..f16002e9 100755 --- a/deployments/native/deployment.sh +++ b/deployments/native/deployment.sh @@ -212,7 +212,7 @@ function init_sqlite_stores() { function init_clients() { _init_client evcli github.com/veraison/evcli/v2@40dfa3d3 - _init_client cocli github.com/veraison/corim/cocli@2583a736 + _init_client cocli github.com/veraison/corim/cocli@be7ec482 _init_client pocli github.com/veraison/pocli@2fa24ea3 }