mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-05 10:12:55 +01:00
Fix linting
This commit is contained in:
parent
fe28a720e4
commit
c4678ef19f
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ export function getInputAsArray(
|
||||||
return core
|
return core
|
||||||
.getInput(name, options)
|
.getInput(name, options)
|
||||||
.split("\n")
|
.split("\n")
|
||||||
.map(s => s.replace(/^\!\s+/, "!").trim())
|
.map(s => s.replace(/^!\s+/, "!").trim())
|
||||||
.filter(x => x !== "")
|
.filter(x => x !== "")
|
||||||
.sort();
|
.sort();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue