Skip to content

Commit f948076

Browse files
silverwindclaude
andcommitted
Remove unnecessary GIT_TERMINAL_PROMPT env override
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 490d058 commit f948076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ async function fetchGoVcsInfo(name: string, type: string, currentVersion: string
565565
const {stdout} = await execFile("go", ["list", "-m", "-json", `${modulePath}@latest`], {
566566
timeout,
567567
cwd: goCwd,
568-
env: {...env, GIT_TERMINAL_PROMPT: "0"},
568+
env,
569569
});
570570
const data = JSON.parse(stdout) as {Version: string, Time?: string};
571571
return {Version: data.Version, Time: data.Time || "", path: modulePath};

0 commit comments

Comments
 (0)