mirror of
https://github.com/giraffate/clippy-action.git
synced 2025-01-18 16:54:42 +01:00
Update args
This commit is contained in:
parent
8a1cae45a3
commit
9137cd7113
3 changed files with 3 additions and 3 deletions
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
|
@ -166,7 +166,7 @@ function run() {
|
|||
return yield installer.installReviewdog(reviewdogVersion, tmpdir);
|
||||
}));
|
||||
const code = yield core.group("Running Clippy with reviewdog 🐶 ...", () => __awaiter(this, void 0, void 0, function* () {
|
||||
const output = yield exec.getExecOutput("cargo", ["clippy", "-q", "--message-format", "short"], {
|
||||
const output = yield exec.getExecOutput("cargo", ["clippy", "--color", "never", "-q", "--message-format", "short"], {
|
||||
cwd,
|
||||
ignoreReturnCode: true,
|
||||
});
|
||||
|
|
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
|
@ -32,7 +32,7 @@ async function run(): Promise<void> {
|
|||
const code = await core.group("Running Clippy with reviewdog 🐶 ...", async (): Promise<number> => {
|
||||
const output = await exec.getExecOutput(
|
||||
"cargo",
|
||||
["clippy", "-q", "--message-format", "short"],
|
||||
["clippy", "--color", "never", "-q", "--message-format", "short"],
|
||||
{
|
||||
cwd,
|
||||
ignoreReturnCode: true,
|
||||
|
|
Loading…
Add table
Reference in a new issue