From 7961329aa827aff3dcef1cc2ed188b3789041c37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90?= Date: Tue, 19 Oct 2021 13:26:19 +0800 Subject: [PATCH] build: fix copying font files (#3929) --- build/gulpfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.ts b/build/gulpfile.ts index 479cf44cec..67732e41dd 100644 --- a/build/gulpfile.ts +++ b/build/gulpfile.ts @@ -37,7 +37,7 @@ export const copyFullStyle = async () => { await run(`mkdir -p ${epOutput}/dist/fonts`) await Promise.all([ run(`cp ${epOutput}/theme-chalk/index.css ${epOutput}/dist/index.css`), - run(`cp -R ${epOutput}/theme-chalk/fonts ${epOutput}/dist/fonts`), + run(`cp -R ${epOutput}/theme-chalk/fonts ${epOutput}/dist`), ]) }