Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c84cc34

Browse files
committed
Fix lint errors
1 parent c14d06a commit c84cc34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/arduino/arduino.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license.
33

4-
import * as child_process from 'child_process';
4+
import * as child_process from "child_process";
55
import * as fs from "fs";
66
import * as glob from "glob";
77
import * as os from "os";
@@ -878,7 +878,7 @@ export class ArduinoApp {
878878
const additionalUrls = this.getAdditionalUrls();
879879
return util.spawn(
880880
this._settings.commandPath,
881-
args.concat(['--additional-urls', additionalUrls.join(',')]),
881+
args.concat(["--additional-urls", additionalUrls.join(",")]),
882882
options,
883883
output);
884884
}

0 commit comments

Comments
 (0)