mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-04-05 23:09:49 +00:00
Call addToPath method on DotnetInstallDir directly
This commit is contained in:
3
dist/index.js
vendored
3
dist/index.js
vendored
@ -463,7 +463,6 @@ class DotnetCoreInstaller {
|
||||
}
|
||||
}
|
||||
exports.DotnetCoreInstaller = DotnetCoreInstaller;
|
||||
DotnetCoreInstaller.addToPath = DotnetInstallDir.addToPath;
|
||||
(() => {
|
||||
DotnetInstallDir.setEnvironmentVariable();
|
||||
})();
|
||||
@ -571,7 +570,7 @@ function run() {
|
||||
const installedVersion = yield dotnetInstaller.installDotnet();
|
||||
installedDotnetVersions.push(installedVersion);
|
||||
}
|
||||
installer_1.DotnetCoreInstaller.addToPath();
|
||||
installer_1.DotnetInstallDir.addToPath();
|
||||
}
|
||||
const sourceUrl = core.getInput('source-url');
|
||||
const configFile = core.getInput('config-file');
|
||||
|
Reference in New Issue
Block a user