From ef89c3a8eb16e205f23a33dea1e1baaffc01a4ae Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Mon, 28 Sep 2020 12:29:59 +0200 Subject: [PATCH] typo --- dist/restore/index.js | 2 +- src/restore.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/restore/index.js b/dist/restore/index.js index 56521eb..fde616b 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -54734,7 +54734,7 @@ async function run() { const caches = await getCaches(); for (const [type, { name, path, key, restoreKeys }] of Object.entries(caches)) { const start = Date.now(); - core.startGroup(`Restoring ${name}"…`); + core.startGroup(`Restoring ${name}…`); core.info(`Restoring to path "${path}".`); core.info(`Using keys:\n ${[key, ...restoreKeys].join("\n ")}`); try { diff --git a/src/restore.ts b/src/restore.ts index 117b6ef..59ecb7b 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -13,7 +13,7 @@ async function run() { const caches = await getCaches(); for (const [type, { name, path, key, restoreKeys }] of Object.entries(caches)) { const start = Date.now(); - core.startGroup(`Restoring ${name}"…`); + core.startGroup(`Restoring ${name}…`); core.info(`Restoring to path "${path}".`); core.info(`Using keys:\n ${[key, ...restoreKeys].join("\n ")}`); try {