Makefile: drop unused run
target
This commit is contained in:
parent
ebf4062c85
commit
53ab72cec0
1 changed files with 1 additions and 4 deletions
5
Makefile
5
Makefile
|
@ -19,7 +19,7 @@ IMAGE_REPO=nspccdev/neo-go
|
||||||
# All of the targets are phony here because we don't really use make dependency
|
# All of the targets are phony here because we don't really use make dependency
|
||||||
# tracking for files
|
# tracking for files
|
||||||
.PHONY: build deps image image-latest image-push image-push-latest check-version clean-cluster push-tag \
|
.PHONY: build deps image image-latest image-push image-push-latest check-version clean-cluster push-tag \
|
||||||
run run-cluster test vet lint fmt cover
|
test vet lint fmt cover
|
||||||
|
|
||||||
build: deps
|
build: deps
|
||||||
@echo "=> Building binary"
|
@echo "=> Building binary"
|
||||||
|
@ -77,9 +77,6 @@ push-tag:
|
||||||
git tag ${VERSION}
|
git tag ${VERSION}
|
||||||
git push origin ${VERSION}
|
git push origin ${VERSION}
|
||||||
|
|
||||||
run: build
|
|
||||||
${BINARY} node -config-path ./config -${NETMODE}
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@go test ./... -cover
|
@go test ./... -cover
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue