We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 843a941 + 57c06ad commit 41d9cc8Copy full SHA for 41d9cc8
Makefile
@@ -1,15 +1,11 @@
1
.DEFAULT_GOAL := help
2
-.PHONY: teller install-skycoin-cli test lint lint-fast check format cover help
+.PHONY: teller test lint lint-fast check format cover help
3
4
PACKAGES = $(shell find ./src -type d -not -path '\./src')
5
6
-teller: SKYCOIN-CLI-exists ## Run teller. To add arguments, do 'make ARGS="--foo" teller'.
+teller: ## Run teller. To add arguments, do 'make ARGS="--foo" teller'.
7
go run cmd/teller/teller.go ${ARGS}
8
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
-
13
test: ## Run tests
14
go test ./cmd/... -timeout=1m -cover
15
go test ./src/... -timeout=1m -cover
0 commit comments