diff --git a/dist/index.js b/dist/index.js index ca06b0c..089c091 100644 --- a/dist/index.js +++ b/dist/index.js @@ -16778,7 +16778,7 @@ class DotnetCoreInstaller { else { if (IS_WINDOWS) { // This is the default set in install-dotnet.ps1 - core.addPath(path.join(process.env['%LocalAppData'] + '', 'Microsoft', 'dotnet')); + core.addPath(path.join(process.env['LocalAppData'] + '', 'Microsoft', 'dotnet')); } else { // This is the default set in install-dotnet.sh diff --git a/src/installer.ts b/src/installer.ts index dded4e7..a573604 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -167,7 +167,7 @@ export class DotnetCoreInstaller { if (IS_WINDOWS) { // This is the default set in install-dotnet.ps1 core.addPath( - path.join(process.env['%LocalAppData'] + '', 'Microsoft', 'dotnet') + path.join(process.env['LocalAppData'] + '', 'Microsoft', 'dotnet') ); } else { // This is the default set in install-dotnet.sh