summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-11-14 10:57:48 +0100
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-11-14 10:57:48 +0100
commitb0d130807fb9bf36f5ac1abe21cbd558eb86d5cc (patch)
treebcd6aefa2117fba70745872214d2d866b6e9ab20 /Makefile
parentfb2f6b918beb0a994ad304bfd678ef0c5c562210 (diff)
Fixed webapp build and error message.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 18638c6..3f4457c 100644
--- a/Makefile
+++ b/Makefile
@@ -100,10 +100,10 @@ distclean: clean
cd $(ROOT_SRCDIR) && rm -rf $(LOCAL_BINDIR) ./tools ./glide.lock ./vendor ./*.zip ./webapp/node_modules ./webapp/dist
webapp: webapp/install
- (cd webapp && gulp build)
+ (cd webapp && npm run build)
webapp/debug:
- (cd webapp && gulp watch &)
+ (cd webapp && npm run watch)
webapp/install:
(cd webapp && npm install)