Skip to content

Commit

Permalink
Merge pull request #39 from legalweb/bugfix/join-without-comma
Browse files Browse the repository at this point in the history
Join without comma
  • Loading branch information
Bradley Weston authored Jan 18, 2019
2 parents 831ada2 + 347ce38 commit 34558ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/push.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 34558ce

Please sign in to comment.