Skip to content

Commit

Permalink
Improve system ARCH alignment for golang distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
ngardiner committed Feb 1, 2025
1 parent fc6e941 commit 0f81732
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
DEPS := git libffi-dev libpq-dev libssl-dev
WEBDEPS := $(DEPS) lighttpd
ARCH := $(shell uname -m | sed s/x86_64/amd64/ | sed s/aarch64/arm64/)
GODIST := go1.23.4.linux-$(ARCH).tar.gz
ARCH := $(shell uname -m)
GOARCH := $(shell echo $(ARCH) | sed s/x86_64/amd64/ | sed s/aarch64/arm64/ | sed s/armv7l/armv6l/)
GODIST := go1.23.4.linux-$(GOARCH).tar.gz
HOME := /home/twcmanager
SUDO := sudo
USER := twcmanager
Expand Down

0 comments on commit 0f81732

Please sign in to comment.