0
0
Fork 0
mirror of https://github.com/DavidAnson/markdownlint-cli2-action.git synced 2024-10-16 12:07:01 +02:00

Fix typo due to copy/paste from runnable environment.

This commit is contained in:
David Anson 2021-01-13 14:55:03 -08:00
parent a7cc7f4b06
commit dc22015534
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View file

@ -16,7 +16,7 @@ const { "main": markdownlintCli2 } = __nccwpck_require__(9202);
const logMessage = core.info;
const logError = core.error;
const argv = core.getInput("globs").split("\n").filter(String));
const argv = core.getInput("globs").split("\n").filter(String);
markdownlintCli2({
argv,

View file

@ -7,7 +7,7 @@ const { "main": markdownlintCli2 } = require("markdownlint-cli2");
const logMessage = core.info;
const logError = core.error;
const argv = core.getInput("globs").split("\n").filter(String));
const argv = core.getInput("globs").split("\n").filter(String);
markdownlintCli2({
argv,