Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit b4221dc

Browse files
committed
Makefile: fix.
1 parent 253a748 commit b4221dc

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

Makefile

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
SHELL="/bin/bash"
2-
PLATFORM=$(shell go env GOOS)
3-
ARCH=$(shell go env GOARCH)
4-
GOPATH=$(shell go env GOPATH)
5-
GOBIN=$(GOPATH)/bin
1+
SHELL = /bin/bash
2+
PLATFORM = $(shell go env GOOS)
3+
ARCH = $(shell go env GOARCH)
4+
GOPATH = $(shell go env GOPATH)
5+
GOBIN = $(GOPATH)/bin
66

77
default: build
88

99
build:
1010
go fmt ./...
11+
echo $(PLATFORM)
12+
echo $(ARCH)
1113
DEP_BUILD_PLATFORMS=$(PLATFORM) DEP_BUILD_ARCHS=$(ARCH) ./bin/build-all.bash
1214
cp ./release/bittrex-cli-$(PLATFORM)-$(ARCH) bittrex-cli
1315

@@ -20,4 +22,4 @@ test:
2022
vendor:
2123
dep ensure
2224

23-
.PHONY: build validate test install docusaurus
25+
.PHONY: build test install

0 commit comments

Comments
 (0)