Skip to content

Commit

Permalink
Improve output
Browse files Browse the repository at this point in the history
  • Loading branch information
kiliczsh committed May 1, 2021
1 parent 75e6fc8 commit 47bba46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .idea/workspace.xml

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

3 changes: 1 addition & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8602,9 +8602,8 @@ try {
scanResult = String(`${scanResult} \n ${msg}`);
console.log(scanResult);
}
core.setOutput('results', `${scanResult.toString()}`);
});
core.setOutput('results', `${scanResult}`);

} catch (error) {
core.setFailed(error.message);
}
Expand Down
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ try {
scanResult = String(`${scanResult} \n ${msg}`);
console.log(scanResult);
}
core.setOutput('results', `${scanResult.toString()}`);
});
core.setOutput('results', `${scanResult}`);

} catch (error) {
core.setFailed(error.message);
}

0 comments on commit 47bba46

Please sign in to comment.