8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c14d06a commit c84cc34Copy full SHA for c84cc34
src/arduino/arduino.ts
@@ -1,7 +1,7 @@
1
// Copyright (c) Microsoft Corporation. All rights reserved.
2
// Licensed under the MIT license.
3
4
-import * as child_process from 'child_process';
+import * as child_process from "child_process";
5
import * as fs from "fs";
6
import * as glob from "glob";
7
import * as os from "os";
@@ -878,7 +878,7 @@ export class ArduinoApp {
878
const additionalUrls = this.getAdditionalUrls();
879
return util.spawn(
880
this._settings.commandPath,
881
- args.concat(['--additional-urls', additionalUrls.join(',')]),
+ args.concat(["--additional-urls", additionalUrls.join(",")]),
882
options,
883
output);
884
}
0 commit comments