aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/npmcopy.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/tasks/npmcopy.js')
-rw-r--r--build/tasks/npmcopy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/tasks/npmcopy.js b/build/tasks/npmcopy.js
index c57acc2e7..750f26d8a 100644
--- a/build/tasks/npmcopy.js
+++ b/build/tasks/npmcopy.js
@@ -35,7 +35,7 @@ async function npmcopy() {
const toDir = path.dirname( to );
await fs.promises.mkdir( toDir, { recursive: true } );
await fs.promises.copyFile( from, to );
- console.log( `${source} → ${dest}` );
+ console.log( `${ source } → ${ dest }` );
}
}