Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/tasks.ts')
-rw-r--r--editors/code/src/tasks.ts8
1 files changed, 3 insertions, 5 deletions
diff --git a/editors/code/src/tasks.ts b/editors/code/src/tasks.ts
index 417c28f0ee..eb0748a704 100644
--- a/editors/code/src/tasks.ts
+++ b/editors/code/src/tasks.ts
@@ -134,11 +134,9 @@ export async function targetToExecution(
}
return new vscode.ProcessExecution(command, args, {
cwd: options?.cwd,
- env:
- Object.fromEntries(
- Object.entries(options?.env ?? {}).map(([key, value]) => [key, value ?? ""])
- )
- ,
+ env: Object.fromEntries(
+ Object.entries(options?.env ?? {}).map(([key, value]) => [key, value ?? ""]),
+ ),
});
}