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 b335194 commit 6e3cdf1Copy full SHA for 6e3cdf1
dist/index.js
@@ -276,6 +276,7 @@ function run() {
276
if (version) {
277
toolPath = yield installer.getArduinoLint(version);
278
}
279
+ yield exec.exec(toolPath, ["--version"]); // Display the version of arduino-lint in use.
280
const execArgs = [
281
"--compliance",
282
compliance,
src/main.ts
@@ -19,6 +19,8 @@ async function run() {
19
toolPath = await installer.getArduinoLint(version);
20
21
22
+ await exec.exec(toolPath, ["--version"]); // Display the version of arduino-lint in use.
23
+
24
25
26
0 commit comments