Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
Removed --options
  • Loading branch information
gmiszewski-intent authored Aug 16, 2022
1 parent 829a7b5 commit 1466afb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ async function analyze(workingDirectory) {
const analysisOptionsFile = core.getInput('analysis-options-file');
const args = ['--format', 'machine'];

if (fs.existsSync(path.resolve(workingDirectory, analysisOptionsFile))) {
args.push('--options');
args.push(analysisOptionsFile);
}
// if (fs.existsSync(path.resolve(workingDirectory, analysisOptionsFile))) {
// args.push('--options');
// args.push(analysisOptionsFile);
// }

args.push('.');

Expand Down

0 comments on commit 1466afb

Please sign in to comment.