1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-23 13:06:17 +02:00

Remove sort logic from inputs

This commit is contained in:
Vipul 2022-10-03 06:39:10 +00:00
parent ac8075791e
commit 68d96986b5
5 changed files with 7 additions and 27 deletions

View file

@ -38437,8 +38437,7 @@ function getInputAsArray(name, options) {
.getInput(name, options)
.split("\n")
.map(s => s.replace(/^!\s+/, "!").trim())
.filter(x => x !== "")
.sort();
.filter(x => x !== "");
}
exports.getInputAsArray = getInputAsArray;
function getInputAsInt(name, options) {