Skip to content

Commit

Permalink
feat: add spaces for cmd build
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorEulalio committed Apr 4, 2024
1 parent 12d88f9 commit 10a532a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,19 +191,19 @@ function composeFlags(opts) {
}

if (opts.mode && opts.mode == iacMode) {
flags += `--iac`;
flags += ` --iac`;
}

if (opts.recursive) {
flags += `-r`;
flags += ` -r`;
}

if (opts.minimumSeverity) {
flags += `-f=${opts.minimumSeverity}`;
flags += ` -f=${opts.minimumSeverity}`;
}

if (opts.mode && opts.mode == iacMode) {
flags += `${opts.iacScanPath }`;
flags += ` ${opts.iacScanPath }`;
}

return {
Expand Down

0 comments on commit 10a532a

Please sign in to comment.