From f3ea847d2f919190f8881253389d9365ce55f9fb Mon Sep 17 00:00:00 2001 From: lazzzis Date: Thu, 3 Oct 2024 21:27:01 +0800 Subject: [PATCH] fix: fix typo --- manage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manage.js b/manage.js index 375069d..4803695 100644 --- a/manage.js +++ b/manage.js @@ -115,7 +115,7 @@ async function staticFilesSetup () { }) } -async function exampleProblemSetUp () { +async function exampleProblemSetup () { fse.move('data/example', 'data/1000') } @@ -123,7 +123,7 @@ program.command('setup') .action(() => { console.log('setup...') Promise.all([ - exampleProblemSetUp(), + exampleProblemSetup(), judgeSetup(), staticFilesSetup(), ])