From 13cd9c3903a1e78a62500cfd180871660bc0bf14 Mon Sep 17 00:00:00 2001 From: gagik Date: Wed, 12 Feb 2025 14:44:24 +0100 Subject: [PATCH] fix: install specific curl packages --- testing/test-vscode.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/testing/test-vscode.sh b/testing/test-vscode.sh index 9635ef75ef..fe99f5a5f7 100755 --- a/testing/test-vscode.sh +++ b/testing/test-vscode.sh @@ -1,6 +1,11 @@ #!/bin/sh set -x set -e + +# Install necessary packages with specific versions +sudo apt-get update +sudo apt-get install -y curl=7.68.0-1ubuntu2.22 libcurl4=7.68.0-1ubuntu2.22 libcurl4-openssl-dev=7.68.0-1ubuntu2.22 + # just to make sure: we are in the mongosh root dir test -x packages && grep -q '"name": "mongosh"' package.json npm -v