From 83ca6ad4c12dfd077014560207056379f7489722 Mon Sep 17 00:00:00 2001 From: nitrocode <7775707+nitrocode@users.noreply.github.com> Date: Tue, 30 May 2023 21:41:21 -0500 Subject: [PATCH] fix(e2e-deps): fix jq download (#3464) * fix(e2e-deps): fix jq download * Update e2e-deps.sh --- scripts/e2e-deps.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/e2e-deps.sh b/scripts/e2e-deps.sh index ccb50a5ec..b01559bad 100755 --- a/scripts/e2e-deps.sh +++ b/scripts/e2e-deps.sh @@ -19,9 +19,10 @@ chmod +x terraform cp terraform /home/circleci/go/bin # Download ngrok to create a tunnel to expose atlantis server wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v2-stable-linux-amd64.zip -O ngrok-stable-linux-amd64.zip -unzip ngrok-stable-linux-amd64.zip -chmod +x ngrok -wget https://stedolan.github.io/jq/download/linux64/jq +unzip ngrok-stable-linux-amd64.zip +chmod +x ngrok +# Download jq +wget -O jq https://github.com/jqlang/jq/releases/download/jq-1.6/jq-linux64 chmod +x jq # Copy github config file - replace with circleci user later cp .gitconfig ~/.gitconfig