Skip to content

Commit 6e3cdf1

Browse files
committed
Show arduino-lint version in log
1 parent b335194 commit 6e3cdf1

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ function run() {
276276
if (version) {
277277
toolPath = yield installer.getArduinoLint(version);
278278
}
279+
yield exec.exec(toolPath, ["--version"]); // Display the version of arduino-lint in use.
279280
const execArgs = [
280281
"--compliance",
281282
compliance,

src/main.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ async function run() {
1919
toolPath = await installer.getArduinoLint(version);
2020
}
2121

22+
await exec.exec(toolPath, ["--version"]); // Display the version of arduino-lint in use.
23+
2224
const execArgs = [
2325
"--compliance",
2426
compliance,

0 commit comments

Comments
 (0)