Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit b651ea8

Browse files
committed
Fix build cwd (#1374)
1 parent 096fecb commit b651ea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arduino/arduino.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ export class ArduinoApp {
767767
return await util.spawn(
768768
this._settings.commandPath,
769769
args,
770-
undefined,
770+
{ cwd: ArduinoWorkspace.rootPath },
771771
{ /*channel: arduinoChannel.channel,*/ stdout: stdoutcb, stderr: stderrcb },
772772
).then(async () => {
773773
const ret = await cleanup("ok");

0 commit comments

Comments
 (0)