Skip to content

Commit

Permalink
fix(e2e-deps): fix jq download (#3464)
Browse files Browse the repository at this point in the history
* fix(e2e-deps): fix jq download

* Update e2e-deps.sh
  • Loading branch information
nitrocode committed May 31, 2023
1 parent e7c7738 commit 83ca6ad
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/e2e-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 83ca6ad

Please sign in to comment.