From 48cf99d398472044a622e7d9feb02abc8ead4ef7 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Wed, 21 Dec 2016 10:35:29 -0500 Subject: [PATCH] remove run target --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 8f46c54..02089d1 100644 --- a/Makefile +++ b/Makefile @@ -9,13 +9,10 @@ clean: rm -f ./pypihub rm -rf ./build -run: - go run ./cmd/pypihub/main.go - docker_build: build/pypihub docker build -t pypihub . docker_up: docker_build docker-compose up --build -.PHONY: clean docker_build run docker)up +.PHONY: clean docker_build docker_up