diff options
Diffstat (limited to 'bin/build.ts')
-rwxr-xr-x | bin/build.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/build.ts b/bin/build.ts index d6b6df9..2b76a94 100755 --- a/bin/build.ts +++ b/bin/build.ts @@ -21,7 +21,7 @@ if (!fs.existsSync("static")) { process.exit(1); } fs.readdirSync("static").map((file) => { - log.info(`Copying static/${file}`); + log.debug(`Copying static/${file}`); fs.cpSync(`static/${file}`, `public/${file}`, { dereference: true, recursive: true, |