mirror of
https://github.com/actions/setup-go
synced 2024-11-09 15:12:40 +00:00
Update dist
This commit is contained in:
parent
0b4fbc55f6
commit
13df686579
1 changed files with 2 additions and 2 deletions
4
dist/index.js
vendored
4
dist/index.js
vendored
|
@ -2127,12 +2127,12 @@ function addBinToPath() {
|
||||||
if (!fs_1.default.existsSync(gp)) {
|
if (!fs_1.default.existsSync(gp)) {
|
||||||
// some of the hosted images have go install but not profile dir
|
// some of the hosted images have go install but not profile dir
|
||||||
core.debug(`creating ${gp}`);
|
core.debug(`creating ${gp}`);
|
||||||
io.mkdirP(gp);
|
yield io.mkdirP(gp);
|
||||||
}
|
}
|
||||||
let bp = path_1.default.join(gp, 'bin');
|
let bp = path_1.default.join(gp, 'bin');
|
||||||
if (!fs_1.default.existsSync(bp)) {
|
if (!fs_1.default.existsSync(bp)) {
|
||||||
core.debug(`creating ${bp}`);
|
core.debug(`creating ${bp}`);
|
||||||
io.mkdirP(bp);
|
yield io.mkdirP(bp);
|
||||||
}
|
}
|
||||||
core.addPath(bp);
|
core.addPath(bp);
|
||||||
added = true;
|
added = true;
|
||||||
|
|
Loading…
Reference in a new issue