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

Commit 395b011

Browse files
authored
Merge branch 'master' into close-stale-issues
2 parents f7c7953 + 2d4d72b commit 395b011

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Welcome to the Visual Studio Code extension for **Arduino** <sup>preview</sup> !
1818
## Prerequisites
1919
The Arduino IDE is required. Please install it from the [download page](https://www.arduino.cc/en/main/software#download).
2020
- *Note:* Arduino IDE `1.8.7` has some breaking changes, causing board package and library installation failures. It is recommended to that you install version `1.8.6` or `1.8.8`
21-
- The supported Arduino IDE versions are `1.6.x` and later are supported.
21+
- The supported Arduino IDE versions are `1.6.x` and later.
2222
- The Windows Store's version of the Arduino IDE is not supported because of the sandbox environment that the application runs in.
2323

2424
## Installation

src/common/util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,10 @@ export function spawn(command: string, outputChannel: vscode.OutputChannel, args
210210
let codepage = "65001";
211211
if (os.platform() === "win32") {
212212
try {
213-
const chcp = childProcess.execSync("chcp");
213+
const chcp = childProcess.execSync("chcp.com");
214214
codepage = chcp.toString().split(":").pop().trim();
215215
} catch (error) {
216-
arduinoChannel.warning(`Defaulting to code page 850 because chcp failed.\
216+
arduinoChannel.warning(`Defaulting to code page 850 because chcp.com failed.\
217217
\rEnsure your path includes %SystemRoot%\\system32\r${error.message}`);
218218
codepage = "850";
219219
}

src/views/package-lock.json

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

0 commit comments

Comments
 (0)