mirror of
https://github.com/anchore/grype
synced 2024-11-10 06:34:13 +00:00
add arm64 support to install.sh (#480)
Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
This commit is contained in:
parent
d4bcf161b5
commit
c9a1506ede
1 changed files with 2 additions and 0 deletions
|
@ -68,8 +68,10 @@ execute() {
|
||||||
get_binaries() {
|
get_binaries() {
|
||||||
case "$PLATFORM" in
|
case "$PLATFORM" in
|
||||||
darwin/amd64) BINARIES="grype" ;;
|
darwin/amd64) BINARIES="grype" ;;
|
||||||
|
darwin/arm64) BINARIES="grype" ;;
|
||||||
linux/amd64) BINARIES="grype" ;;
|
linux/amd64) BINARIES="grype" ;;
|
||||||
windows/amd64) BINARIES="grype" ;;
|
windows/amd64) BINARIES="grype" ;;
|
||||||
|
linux/arm64) BINARIES="grype" ;;
|
||||||
*)
|
*)
|
||||||
log_crit "platform $PLATFORM is not supported. Make sure this script is up-to-date and file request at https://github.com/${PREFIX}/issues/new"
|
log_crit "platform $PLATFORM is not supported. Make sure this script is up-to-date and file request at https://github.com/${PREFIX}/issues/new"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue