Skip to content

Commit a040af0

Browse files
committed
lint bot's bad code
1 parent 051fbb1 commit a040af0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/@apphosting/common/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ export function updateOrCreateGitignore(dirPath: string, entries: string[]) {
156156

157157
let content = fs.readFileSync(gitignorePath, "utf-8");
158158
for (const entry of entries) {
159-
if (!content.split('\n').includes(entry)) {
159+
if (!content.split("\n").includes(entry)) {
160160
console.log(`adding ${entry} to ${gitignorePath}`);
161-
content += `\n${entry}`;
161+
content += `\n${entry}`;
162162
}
163163
}
164164

0 commit comments

Comments
 (0)