🔗Make gluon/ a part of the .gitignore

Should fix #24. This ensures that it adds the gluon dir rather than a file names gluon.
This commit is contained in:
SplatboyDev 2022-10-31 11:23:36 +01:00 committed by GitHub
parent aaf515736f
commit 87ff8e7538
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -158,7 +158,7 @@ export async function setupProject(): Promise<void> {
}
gitignoreContents +=
'\n.dotbuild/\n.gluon\nengine/\nfirefox-*/\nnode_modules/\n'
'\n.dotbuild/\n.gluon/\nengine/\nfirefox-*/\nnode_modules/\n'
writeFileSync(gitignore, gitignoreContents)