From 53ab72cec005ccf0d0b30020e56e09552759da79 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Fri, 19 Mar 2021 11:20:08 +0300 Subject: [PATCH] Makefile: drop unused `run` target --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1855c41a6..06261b346 100644 --- a/Makefile +++ b/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 # tracking for files .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 @echo "=> Building binary" @@ -77,9 +77,6 @@ push-tag: git tag ${VERSION} git push origin ${VERSION} -run: build - ${BINARY} node -config-path ./config -${NETMODE} - test: @go test ./... -cover