Skip to content

Commit

Permalink
prettier format
Browse files Browse the repository at this point in the history
  • Loading branch information
e-korolevskii committed Sep 8, 2022
1 parent db58e98 commit c4e1698
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/cache-save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/cache-save.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit c4e1698

Please sign in to comment.