From a89dcfa06d792e9d59daa76c7c254db099678f13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar?= Date: Sat, 28 Nov 2020 20:39:41 +0100 Subject: [PATCH] Update dist folder --- dist/restore/index.js | 5 +++-- dist/save/index.js | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/dist/restore/index.js b/dist/restore/index.js index bf3053d..7a04776 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -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) { diff --git a/dist/save/index.js b/dist/save/index.js index 80a93af..1d3b077 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -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) {