From 347ce38dc47c49bb92f7a30d8dec55d8385271c7 Mon Sep 17 00:00:00 2001 From: KyleNeedham Date: Fri, 18 Jan 2019 14:50:44 +0000 Subject: [PATCH] Join without comma --- scripts/push.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/push.js b/scripts/push.js index 462a0ed..9ad8f6b 100755 --- a/scripts/push.js +++ b/scripts/push.js @@ -93,7 +93,7 @@ async function getSource() { files.map(file => fs.promises.readFile(path.join(staticDir, file))) ); - await fs.promises.writeFile(buildFilename, contents); + await fs.promises.writeFile(buildFilename, contents.join('')); } catch (e) { fatal(e); }