🐛 Stop specifying UTF-8

This commit is contained in:
trickypr 2022-06-19 10:23:48 +10:00
parent 1964e6e17d
commit 463164a2af
10 changed files with 20 additions and 21 deletions

View file

@ -147,7 +147,7 @@ export async function setupProject(): Promise<void> {
let gitignoreContents = ''
if (existsSync(gitignore)) {
gitignoreContents = readFileSync(gitignore, 'utf8')
gitignoreContents = readFileSync(gitignore).toString()
}
gitignoreContents += '\n.dotbuild/\nengine/\nfirefox-*/\nnode_modules/\n'