Skip to content

Commit

Permalink
fix: replace 'arch' command with 'uname -m' for cross-platform compat…
Browse files Browse the repository at this point in the history
…ibility (#150)

Co-authored-by: yohans <emailyyohans@gmail.com>
  • Loading branch information
yohans-kasaw and yohans authored Nov 8, 2024
1 parent d22eabd commit 8dd1fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BINARY_NAME=go-fast-cdn
OS_NAME := $(shell uname -s | tr A-Z a-z)
ARCH := $(shell arch | tr A-Z a-z | sed 's/^aarch/arm/')
ARCH := $(shell uname -m | tr A-Z a-z | sed 's/^aarch/arm/')

prep:
go mod tidy
Expand Down

0 comments on commit 8dd1fb2

Please sign in to comment.