mirror of
https://github.com/actions/setup-go.git
synced 2025-07-17 12:35:14 -06:00
fix adding to bin path
This commit is contained in:
parent
85b6f5f43e
commit
d47eadc0ff
3 changed files with 5 additions and 3 deletions
|
@ -30,7 +30,8 @@ export async function run() {
|
|||
core.addPath(path.join(installDir, 'bin'));
|
||||
core.info('Added go to the path');
|
||||
|
||||
let added = addBinToPath();
|
||||
let added = await addBinToPath();
|
||||
core.debug(`add bin ${added}`);
|
||||
core.info(`Successfully setup go version ${versionSpec}`);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue