diff --git a/packages/hydrooj/src/entry/worker.ts b/packages/hydrooj/src/entry/worker.ts index b4419673..bde3a548 100644 --- a/packages/hydrooj/src/entry/worker.ts +++ b/packages/hydrooj/src/entry/worker.ts @@ -96,7 +96,7 @@ export async function apply(ctx: Context) { for (const f of global.addons) { const dir = path.join(f, 'public'); // 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'); logger.success('Server started');