core: fix static dir

pull/583/head
undefined 1 year ago
parent 47ec7e3934
commit 86dc5765df
No known key found for this signature in database

@ -96,7 +96,7 @@ export async function apply(ctx: Context) {
for (const f of global.addons) { for (const f of global.addons) {
const dir = path.join(f, 'public'); const dir = path.join(f, 'public');
// eslint-disable-next-line no-await-in-loop // eslint-disable-next-line no-await-in-loop
if (await fs.pathExists(dir)) await fs.copy(dir, '/root/.hydro/static'); if (await fs.pathExists(dir)) await fs.copy(dir, path.join(os.homedir(), '.hydro/static'));
} }
await ctx.parallel('app/listen'); await ctx.parallel('app/listen');
logger.success('Server started'); logger.success('Server started');

Loading…
Cancel
Save