From 6503bbe6fe2747395add7e8a641880d276dce100 Mon Sep 17 00:00:00 2001 From: Sahil Mane <148791198+sahilmane69@users.noreply.github.com> Date: Sun, 6 Sep 2026 17:49:35 +0530 Subject: [PATCH] fix: do not add .venv to gitignore --- src/lib/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils.ts b/src/lib/utils.ts index 99d8784e8..c5e13d6e0 100644 --- a/src/lib/utils.ts +++ b/src/lib/utils.ts @@ -234,7 +234,7 @@ export const setLocalConfig = async (localConfig: Record, actDi writeFileSync(fullPath, JSON.stringify(localConfig, null, '\t')); }; -const GITIGNORE_REQUIRED_CONTENTS = [getLocalStorageDir(), 'node_modules', '.venv']; +const GITIGNORE_REQUIRED_CONTENTS = [getLocalStorageDir(), 'node_modules']; export const setLocalEnv = async (actDir: string) => { // Create folders for emulation Apify stores