aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-06 14:15:27 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-06 14:18:55 +0200
commit3edec36e0aa79761641ade061042c0252e43024e (patch)
tree2056ac6240f2977d290ae8dfcaa9721cb5622a38 /Makefile
parent7d57ec61892dd1c25ac5621afd949a2dbc3b766c (diff)
downloadgit-bug-3edec36e0aa79761641ade061042c0252e43024e.tar.gz
make git-bug go gettable without having to commit the builded webUI
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bbe779ca..3b2aa6e6 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,8 @@ install:
test: build
go test ./...
-webui:
+pack-webui:
npm run --prefix webui build
+ go run webui/pack_webui.go
.PHONY: build install test