Skip to content

Commit b361ddf

Browse files
authored
Improve ignore files for python functions. (#5513)
1 parent 993850f commit b361ddf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/init/features/functions/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,9 @@ async function languageSetup(setup: any, config: Config): Promise<any> {
188188
case "typescript":
189189
cbconfig.ignore = ["node_modules", ".git", "firebase-debug.log", "firebase-debug.*.log"];
190190
break;
191+
case "python":
192+
cbconfig.ignore = ["venv", ".git", "firebase-debug.log", "firebase-debug.*.log"];
193+
break;
191194
}
192195
return require("./" + language).setup(setup, config);
193196
}

0 commit comments

Comments
 (0)