From 1b4fbf71a09b95a90597e438c5a18ac4eb829bbf Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Tue, 4 Apr 2023 12:22:43 +0200 Subject: [PATCH] fix comment --- dist/cache-save/index.js | 2 +- src/cache-save.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/cache-save/index.js b/dist/cache-save/index.js index 6375d4bb..d5f534db 100644 --- a/dist/cache-save/index.js +++ b/dist/cache-save/index.js @@ -59630,7 +59630,7 @@ function saveCache(packageManager) { return __awaiter(this, void 0, void 0, function* () { const cachePathState = core.getState(cache_distributor_1.State.CACHE_PATHS); if (!cachePathState) { - core.warning('State paths for saving/restoring is empty. Could you please check previous logs and verify that the version python is specified version?'); + core.warning('Cache paths are empty. Please check the previous logs and make sure that the python version is specified'); return; } const cachePaths = JSON.parse(cachePathState); diff --git a/src/cache-save.ts b/src/cache-save.ts index 64cbe64d..1017ef11 100644 --- a/src/cache-save.ts +++ b/src/cache-save.ts @@ -21,7 +21,7 @@ async function saveCache(packageManager: string) { if (!cachePathState) { core.warning( - 'State paths for saving/restoring is empty. Could you please check previous logs and verify that the version python is specified version?' + 'Cache paths are empty. Please check the previous logs and make sure that the python version is specified' ); return; }