Skip to content

Commit

Permalink
Fix wrong prefix name for release file
Browse files Browse the repository at this point in the history
  • Loading branch information
mblaschke committed Apr 25, 2017
1 parent 449adc4 commit f8707df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ALL = \
$(foreach suffix,linux osx win.exe,\
build/gr-$(arch)-$(suffix))) \
$(foreach arch,arm arm64,\
build/go-crond-$(arch)-linux)
build/gr-$(arch)-linux)

all: test build

Expand All @@ -32,11 +32,11 @@ build/gr-32-%: $(SOURCE)
@mkdir -p $(@D)
CGO_ENABLED=0 GOOS=$(firstword $($*) $*) GOARCH=386 $(GOBUILD) -o $@

build/go-crond-arm-linux: $(SOURCE)
build/gr-arm-linux: $(SOURCE)
@mkdir -p $(@D)
CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=6 $(GOBUILD) -o $@

build/go-crond-arm64-linux: $(SOURCE)
build/gr-arm64-linux: $(SOURCE)
@mkdir -p $(@D)
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 $(GOBUILD) -o $@

Expand Down

0 comments on commit f8707df

Please sign in to comment.