Skip to content

Commit

Permalink
Fix incorrect Trivy download link (#4365)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthchr authored Oct 22, 2024
1 parent 482e3dd commit 48d531b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ if should-install "$TOOL_DEST/trivy"; then
if [[ ${os} == "darwin" ]] && [[ ${arch} == "arm64" ]]; then
curl -sL "https://github.com/aquasecurity/trivy/releases/download/v0.55.2/trivy_0.55.2_macOS-ARM64.tar.gz" | tar xz -C "$TOOL_DEST" trivy
else
curl -sL "https://github.com/aquasecurity/trivy/releases/download/v0.55.2/trivy_0.55.2_Linux-ARM64.tar.gz" | tar xz -C "$TOOL_DEST" trivy
curl -sL "https://github.com/aquasecurity/trivy/releases/download/v0.55.2/trivy_0.55.2_Linux-64bit.tar.gz" | tar xz -C "$TOOL_DEST" trivy
fi
fi

Expand Down

0 comments on commit 48d531b

Please sign in to comment.