Skip to content

Commit 41d9cc8

Browse files
authored
Merge pull request #171 from gz-c/makefile2
Remove skycoin-cli from makefile (not needed)
2 parents 843a941 + 57c06ad commit 41d9cc8

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Makefile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
.DEFAULT_GOAL := help
2-
.PHONY: teller install-skycoin-cli test lint lint-fast check format cover help
2+
.PHONY: teller test lint lint-fast check format cover help
33

44
PACKAGES = $(shell find ./src -type d -not -path '\./src')
55

6-
teller: SKYCOIN-CLI-exists ## Run teller. To add arguments, do 'make ARGS="--foo" teller'.
6+
teller: ## Run teller. To add arguments, do 'make ARGS="--foo" teller'.
77
go run cmd/teller/teller.go ${ARGS}
88

9-
install-skycoin-cli: ## Install skycoin-cli
10-
go get github.com/skycoin/skycoin/cmd/cli
11-
@mv $$GOPATH/bin/cli $$GOPATH/bin/skycoin-cli
12-
139
test: ## Run tests
1410
go test ./cmd/... -timeout=1m -cover
1511
go test ./src/... -timeout=1m -cover

0 commit comments

Comments
 (0)