diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-14 10:57:48 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-14 10:57:48 +0100 |
commit | b0d130807fb9bf36f5ac1abe21cbd558eb86d5cc (patch) | |
tree | bcd6aefa2117fba70745872214d2d866b6e9ab20 /Makefile | |
parent | fb2f6b918beb0a994ad304bfd678ef0c5c562210 (diff) |
Fixed webapp build and error message.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |