diff --git a/build.js b/build.js index 5551318e2..2c925ea6f 100644 --- a/build.js +++ b/build.js @@ -22,7 +22,7 @@ const symlinks = { 'test/img': '../dist/img' }; -for (const target of Object.keys(symlinks)) { +for (var target of Object.keys(symlinks)) { if (!shell.test('-L', target)) { console.log(`Creating symlink: ${target} -> ${symlinks[target]}`); shell.ln('-sf', symlinks[target], target);