Skip to content

Commit

Permalink
Update dist folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Álvaro Mondéjar committed Nov 28, 2020
1 parent 1149658 commit a89dcfa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36963,8 +36963,9 @@ function getInputAsArray(name, options) {
return core
.getInput(name, options)
.split("\n")
.map(s => s.trim())
.filter(x => x !== "");
.map(s => s.replace(/^\!\s+/, '!').trim())
.filter(x => x !== "")
.sort();
}
exports.getInputAsArray = getInputAsArray;
function getInputAsInt(name, options) {
Expand Down
5 changes: 3 additions & 2 deletions dist/save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36963,8 +36963,9 @@ function getInputAsArray(name, options) {
return core
.getInput(name, options)
.split("\n")
.map(s => s.trim())
.filter(x => x !== "");
.map(s => s.replace(/^\!\s+/, '!').trim())
.filter(x => x !== "")
.sort();
}
exports.getInputAsArray = getInputAsArray;
function getInputAsInt(name, options) {
Expand Down

0 comments on commit a89dcfa

Please sign in to comment.