From 8895963f3c9a2040ae8ac4f1425775512f0dd8e4 Mon Sep 17 00:00:00 2001 From: Alexander Polynomdivision Date: Tue, 16 Oct 2018 20:12:25 +0200 Subject: [PATCH] build: Fix typo in the Makefile --- frontend/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/Makefile b/frontend/Makefile index 541c68c..b4653c9 100644 --- a/frontend/Makefile +++ b/frontend/Makefile @@ -13,8 +13,8 @@ clean: build: prod prod: node_modules clean @echo Building with parcel - NODE_DEV=production ./node_modules/.bin/parcel build --out-dir dist/app --public-url /app/ src/index.hbs - NODE_ENV=production ./node_modules/.bin/parcel build --out-dir dist src/lost.html src/error.html + NODE_ENV=production ./node_modules/.bin/parcel build --out-dir dist/app --public-url /app/ --no-autoinstall src/index.hbs + NODE_ENV=production ./node_modules/.bin/parcel build --out-dir dist --no-autoinstall src/lost.html src/error.html @echo Generate checksums find ./dist/ -exec sha512sum {} + | awk -F \. '{ if($$4 != "map") print $$0}' | awk -F \/ '{ if($$3 == "lost.html") {} else if ($$3 == "error.html") {} else print $$0}' > sha512sums