From e300300d846caa74c68b49728cc91a67113aaf4d Mon Sep 17 00:00:00 2001 From: Jonathan Zernik Date: Mon, 11 Jan 2021 17:47:27 -0800 Subject: [PATCH] Fix frontend build copy static build to right folder (#609) --- frontend/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/Makefile b/frontend/Makefile index ddb13d4d..aede4b84 100644 --- a/frontend/Makefile +++ b/frontend/Makefile @@ -10,8 +10,8 @@ rundev: gen-protos build: gen-protos npm install npm run build - rm -r ../squeaknode/admin/webapp/static/build - cp -r build/ ../squeaknode/admin/webapp/static/build + rm -rf ../squeaknode/admin/webapp/static/build + cp -r build/ ../squeaknode/admin/webapp/static gen-protos: ./build-protos.sh