build: fix copying font files (#3929)

This commit is contained in:
三咲智子 2021-10-19 13:26:19 +08:00 committed by GitHub
parent feda0d2ccf
commit 7961329aa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`),
])
}