From 540699ca74d9b842dfcaaf0a23e5a304ce84e1c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=98Liu?= <‘liuchunk08@gmail.com’> Date: Wed, 10 Jan 2024 15:35:23 +0800 Subject: [PATCH] Fix build command in package.json --- web/berry/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/berry/package.json b/web/berry/package.json index 6ebaca64..f428fd9c 100644 --- a/web/berry/package.json +++ b/web/berry/package.json @@ -40,7 +40,7 @@ }, "scripts": { "start": "react-scripts start", - "build": "react-scripts build && move build ../build/berry", + "build": "react-scripts build && mv -f build ../build/berry", "test": "react-scripts test", "eject": "react-scripts eject" },