mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-04-04 14:29:47 +00:00
Rename DotnetInstallDir.path to DotnetInstallDir.dirPath
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user