Skip to content

Commit

Permalink
Add terminal newline to files.txt (#26513)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcebulko authored Jan 28, 2020
1 parent 27a9f4f commit 617676a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-system/tasks/dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ async function generateFileListing() {
const filesOut = `${distDir}/files.txt`;
fs.writeFileSync(filesOut, '');
const files = (await walk(distDir)).map(f => f.replace(`${distDir}/`, ''));
fs.writeFileSync(filesOut, files.join('\n'));
fs.writeFileSync(filesOut, files.join('\n') + '\n');
endBuildStep('Generated', filesOut, startTime);
}

Expand Down

0 comments on commit 617676a

Please sign in to comment.