From d15b36c526a8945ab0674331f986212abd93b7a2 Mon Sep 17 00:00:00 2001 From: Captain ALM Date: Sat, 16 Jul 2022 16:07:57 +0100 Subject: [PATCH] Update make file. Try 1. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5c16b1a..18aac5a 100644 --- a/Makefile +++ b/Makefile @@ -25,13 +25,13 @@ dev: ./${BIN} test: - go test + ${COMP_BIN} test clean: - go clean + ${COMP_BIN} clean rm -r -f dist/ deploy: sudo systemctl stop wappcityuni - sudo cp dist/wappcityuni /usr/bin/local + sudo cp "${BIN}" /usr/bin/local sudo systemctl start wappcityuni