Compare commits

..

1 commit

Author SHA1 Message Date
291da10d66
WIP: refactor: port to JS
Some checks failed
/ check (treefmt) (push) Successful in 4s
/ report-size (push) Failing after 4s
/ report-download-check (push) Has been skipped
This should hopefully reduce the complexity of the action
2025-07-11 00:02:22 +02:00
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View file

@ -202406,7 +202406,7 @@ async function collectOutput(cmd, args) {
} }
} }
}); });
return output return output.trim()
} }
/** /**

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View file

@ -141,5 +141,5 @@ async function collectOutput(cmd, args) {
} }
} }
}) })
return output return output.trim()
} }