Skip to content

Commit

Permalink
fix: narrow architecture matching
Browse files Browse the repository at this point in the history
  • Loading branch information
bduranleau-nr committed Aug 7, 2024
1 parent 3f904e5 commit 3e788e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/php/k8s-php-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ log "Installing New Relic PHP Agent for the K8S Agent Operator"
arch=$( (uname -m) 2>/dev/null) || arch="unknown"
case "${arch}" in
aarch64 | arm64) arch=aarch64 ;;
*64* | *amd*) arch=x64 ;;
x86_64 | amd64) arch=x64 ;;
*) arch=invalid ;;
esac

Expand Down

0 comments on commit 3e788e7

Please sign in to comment.