Skip to content

Commit f8707df

Browse files
committedApr 25, 2017
Fix wrong prefix name for release file
1 parent 449adc4 commit f8707df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ALL = \
77
$(foreach suffix,linux osx win.exe,\
88
build/gr-$(arch)-$(suffix))) \
99
$(foreach arch,arm arm64,\
10-
build/go-crond-$(arch)-linux)
10+
build/gr-$(arch)-linux)
1111

1212
all: test build
1313

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

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

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

0 commit comments

Comments
 (0)
Failed to load comments.