From 0c79fdcedded0dca61856fd872c9b36a1de52da1 Mon Sep 17 00:00:00 2001 From: stephansama Date: Sat, 31 May 2025 16:12:46 -0400 Subject: [PATCH] chore: updated env location --- src/commands/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/config.ts b/src/commands/config.ts index 169ee3cd..c200270b 100644 --- a/src/commands/config.ts +++ b/src/commands/config.ts @@ -395,7 +395,7 @@ export type ConfigType = { }; export const defaultConfigPath = pathJoin(homedir(), '.opencommit'); -export const defaultEnvPath = pathResolve(process.cwd(), '.env'); +export const defaultEnvPath = pathResolve(process.cwd(), '.opencommit.env'); const assertConfigsAreValid = (config: Record) => { for (const [key, value] of Object.entries(config)) {