Skip to content

Commit

Permalink
fix: missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
alexplischke committed Feb 7, 2024
1 parent 2a75917 commit b0daf16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16475,6 +16475,8 @@ function retrieveCache(version) {

core.addPath(binPath);
core.info(`saucectl ${version} found in cache`);

return true;
}

module.exports = { getPlatform, selectCompatibleVersion, install };
Expand Down
2 changes: 2 additions & 0 deletions src/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ function retrieveCache(version) {

core.addPath(binPath);
core.info(`saucectl ${version} found in cache`);

return true;
}

module.exports = { getPlatform, selectCompatibleVersion, install };

0 comments on commit b0daf16

Please sign in to comment.