From 0e31e1abff2d690b0f91894524c87540a32b4300 Mon Sep 17 00:00:00 2001 From: Ariki Date: Thu, 31 Aug 2023 15:27:44 +0300 Subject: [PATCH] fix typo --- dist/cache-save/index.js | 2 +- src/cache-save.ts | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/dist/cache-save/index.js b/dist/cache-save/index.js index 81a0817a..654cbbf9 100644 --- a/dist/cache-save/index.js +++ b/dist/cache-save/index.js @@ -60396,7 +60396,7 @@ const cachePackages = (packageManager) => __awaiter(void 0, void 0, void 0, func return; } if (core.getInput('cache-restore-only') == 'true') { - core.info(`Cache was not saved since 'cache-restore-only' was set to true}`); + core.info(`Cache was not saved since 'cache-restore-only' was set to true`); return; } if (!cachePaths.length) { diff --git a/src/cache-save.ts b/src/cache-save.ts index 57449913..352b1a53 100644 --- a/src/cache-save.ts +++ b/src/cache-save.ts @@ -34,9 +34,7 @@ const cachePackages = async (packageManager: string) => { return; } if (core.getInput('cache-restore-only') == 'true') { - core.info( - `Cache was not saved since 'cache-restore-only' was set to true}` - ); + core.info(`Cache was not saved since 'cache-restore-only' was set to true`); return; }