From db58e98a4390997f0cc84c2cf0c40c0dfa685833 Mon Sep 17 00:00:00 2001 From: Evgenii Korolevskii Date: Thu, 8 Sep 2022 14:53:17 +0200 Subject: [PATCH] format --- 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 cedb87e..bf7afc5 100644 --- a/dist/cache-save/index.js +++ b/dist/cache-save/index.js @@ -60008,7 +60008,7 @@ const cachePackages = () => __awaiter(void 0, void 0, void 0, function* () { const cachePaths = yield cache_utils_1.getCacheDirectoryPath(packageManagerInfo); const nonExistingPaths = cachePaths.filter(cachePath => !fs_1.default.existsSync(cachePath)); if (nonExistingPaths.length === cachePaths.length) { - core.warning(`There are no cache folders on the disk`); + core.warning("There are no cache folders on the disk"); return; } if (nonExistingPaths.length) { diff --git a/src/cache-save.ts b/src/cache-save.ts index 1ee7a56..7adf51a 100644 --- a/src/cache-save.ts +++ b/src/cache-save.ts @@ -47,7 +47,7 @@ const cachePackages = async () => { ); if (nonExistingPaths.length === cachePaths.length) { - core.warning(`There are no cache folders on the disk`); + core.warning("There are no cache folders on the disk"); return; }