From 347ce431aedf8dae45528425faf8614d52d717c3 Mon Sep 17 00:00:00 2001 From: pancake Date: Fri, 6 Sep 2024 16:36:21 +0200 Subject: [PATCH] Fix /m build --- www/m/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/m/Makefile b/www/m/Makefile index 236fe0c..62d3a35 100644 --- a/www/m/Makefile +++ b/www/m/Makefile @@ -13,8 +13,8 @@ dist release: node_modules mkdir -p ../../dist/m cp -f index.html ../../dist/m/index.html cp -rf css ../../dist/m - $(shell npm bin)/webpack-cli -o $$PWD/www/ $$PWD/js/app.js - $(shell npm bin)/gulp release + npx webpack-cli -o $$PWD/www/ $$PWD/js/app.js + npx gulp release cp $$PWD/www/* ../../dist/m/. rm -f $(DISTZIP) cd ../../dist && ls -la && zip -r $(DISTZIP) m