summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2021-10-10 01:19:36 +0700
committerShulhan <m.shulhan@gmail.com>2021-10-10 01:19:36 +0700
commitfca4a9a741f51898c702fd512bda2dab876fd829 (patch)
treed6e22fb1d54213c9b77458c293bb7f5b2ce4c972 /Makefile
parenta125f8f570e6b90b62aed15f445d270b0ca383f7 (diff)
downloadgolang-id-web-fca4a9a741f51898c702fd512bda2dab876fd829.tar.xz
Makefile: hapus dependensi "generate" dari task "serve"
Task "serve" secara otomatis akan menjalankan apa yang dilakukan oleh "generate".
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6583b08..4ab855f 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ build: generate
install: generate
go install ./cmd/$(PROGRAM_NAME)
-serve: generate
+serve:
DEBUG=1 go run ./cmd/$(PROGRAM_NAME) -port=5080
deploy: build-deploy