From c4e169859f5fb9f3f78b83a0064bc91bc3d31ca9 Mon Sep 17 00:00:00 2001 From: Evgenii Korolevskii Date: Thu, 8 Sep 2022 15:11:06 +0200 Subject: [PATCH] prettier 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 bf7afc5..c6d68bb 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 7adf51a..6c5d3fa 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; }