mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-02-03 17:36:42 -05:00
Rename DotnetInstallDir.path to DotnetInstallDir.dirPath
This commit is contained in:
parent
2785e21d5e
commit
916aec40c9
1 changed files with 2 additions and 2 deletions
|
@ -219,7 +219,7 @@ export abstract class DotnetInstallDir {
|
|||
windows: path.join(process.env['PROGRAMFILES'] + '', 'dotnet')
|
||||
};
|
||||
|
||||
public static readonly path = process.env['DOTNET_INSTALL_DIR']
|
||||
public static readonly dirPath = process.env['DOTNET_INSTALL_DIR']
|
||||
? DotnetInstallDir.convertInstallPathToAbsolute(
|
||||
process.env['DOTNET_INSTALL_DIR']
|
||||
)
|
||||
|
@ -241,7 +241,7 @@ export abstract class DotnetInstallDir {
|
|||
}
|
||||
|
||||
public static initialize() {
|
||||
process.env['DOTNET_INSTALL_DIR'] = DotnetInstallDir.path;
|
||||
process.env['DOTNET_INSTALL_DIR'] = DotnetInstallDir.dirPath;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue