Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Safonkin committed Jul 1, 2022
1 parent 75be648 commit 9eecd2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cache-save.ts
Expand Up @@ -59,7 +59,7 @@ const cachePackages = async () => {
}

const cacheId = await cache.saveCache(cachePaths, primaryKey);
if (cacheId == -1) {
if (cacheId === -1) {
return;
}
core.info(`Cache saved with the key: ${primaryKey}`);
Expand Down

0 comments on commit 9eecd2d

Please sign in to comment.