Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update dist
  • Loading branch information
Fraser Waters committed Mar 28, 2022
1 parent 0b4fbc5 commit 13df686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Expand Up @@ -2127,12 +2127,12 @@ function addBinToPath() {
if (!fs_1.default.existsSync(gp)) {
// some of the hosted images have go install but not profile dir
core.debug(`creating ${gp}`);
io.mkdirP(gp);
yield io.mkdirP(gp);
}
let bp = path_1.default.join(gp, 'bin');
if (!fs_1.default.existsSync(bp)) {
core.debug(`creating ${bp}`);
io.mkdirP(bp);
yield io.mkdirP(bp);
}
core.addPath(bp);
added = true;
Expand Down

0 comments on commit 13df686

Please sign in to comment.