Skip to content

Commit 034f280

Browse files
committed
run npm i
1 parent c5430b1 commit 034f280

File tree

2 files changed

+20
-17
lines changed

2 files changed

+20
-17
lines changed

package-lock.json

Lines changed: 18 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/common/process/rawProcessApis.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ export function shellExec(
5858
const shellOptions = getDefaultOptions(options, defaultEnv);
5959
if (!options.doNotLog) {
6060
const processLogger = new ProcessLogger(new WorkspaceService());
61-
processLogger.logProcess(command, undefined, shellOptions);
61+
const loggingOptions = { ...shellOptions, encoding: shellOptions.encoding ?? undefined };
62+
processLogger.logProcess(command, undefined, loggingOptions);
6263
}
6364
return new Promise((resolve, reject) => {
6465
// eslint-disable-next-line @typescript-eslint/no-explicit-any

0 commit comments

Comments
 (0)