From a3244c368420a7869a9ff25e9486b4466445cc25 Mon Sep 17 00:00:00 2001 From: Nick Dumas Date: Mon, 12 Jun 2023 10:37:21 -0400 Subject: [PATCH] Refactoring the makefile for sanity and pipelining --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 02c2223..6869ed8 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,17 @@ BINARY_NAME=obp -$DOCKER_CMD="docker --config ~/.docker/" +DOCKER_CMD=docker --config ~/.docker/ .PHONY: docker docker: docker-image docker-push .PHONY: docker-push docker-push: - $DOCKER_CMD push code.ndumas.com/ndumas/obsidian-pipeline:latest + $(DOCKER_CMD) push code.ndumas.com/ndumas/obsidian-pipeline:latest .PHONY: docker-image docker-image: - $DOCKER_CMD build -t code.ndumas.com/ndumas/obsidian-pipeline:latest . + $(DOCKER_CMD) build -t code.ndumas.com/ndumas/obsidian-pipeline:latest . .PHONY: alpine-binary alpine-binary: