Skip to content

Commit

Permalink
wip: testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Aug 30, 2024
1 parent c0acbab commit 6b9064d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions forge/actions/discovery/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion forge/actions/discovery/dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions forge/actions/discovery/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ async function run() {
const path = core.getInput("path", { required: true });
const filters = core.getInput("filters", { required: false });

const args = ["-vv", "scan"];
args.concat(filtersToArgs(filters));
let args = ["-vv", "scan"];
args = args.concat(filtersToArgs(filters));
args.push(path);

core.info(`Running forge ${args.join(" ")}`);
Expand Down

0 comments on commit 6b9064d

Please sign in to comment.