From 1c438e36af877dee7f4bbda302ffd15569507601 Mon Sep 17 00:00:00 2001 From: Grant Murphy Date: Sun, 19 Aug 2018 10:28:17 +1000 Subject: [PATCH] Tweak makefile to match up with docker repo (#231) --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6f8709b..1aca3df 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ GIT_TAG?= $(shell git describe --always --tags) BIN = gosec FMT_CMD = $(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr) -IMAGE_REPO = docker.io +IMAGE_REPO = securego BUILDFLAGS := '' CGO_ENABLED = 0 @@ -41,8 +41,7 @@ image: build-linux image-push: image @echo "Pushing the Docker image..." - -docker push $(IMAGE_REPO)/$(BIN):$(GIT_TAG) + docker push $(IMAGE_REPO)/$(BIN):$(GIT_TAG) docker push $(IMAGE_REPO)/$(BIN):latest .PHONY: test build clean release image image-push