From effda2a34277f6cc2f65201cdce3c189cdb5dfae Mon Sep 17 00:00:00 2001 From: Richard Poelderl Date: Sun, 5 Apr 2026 21:01:07 +0200 Subject: [PATCH] Infra: tighten createGlobalInstallEnv return type --- src/infra/update-global.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/infra/update-global.ts b/src/infra/update-global.ts index a7b1b7ac951..31bee8fb838 100644 --- a/src/infra/update-global.ts +++ b/src/infra/update-global.ts @@ -171,7 +171,7 @@ export function resolveGlobalInstallSpec(params: { export async function createGlobalInstallEnv( env?: NodeJS.ProcessEnv, -): Promise { +): Promise> { const pathPrepend = await resolvePortableGitPathPrepend(env); const merged = Object.fromEntries( Object.entries(env ?? process.env)