diff --git a/dist/setup/index.js b/dist/setup/index.js index 12dbe9a..690ac02 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -71290,7 +71290,7 @@ class DotnetCoreInstaller { ]; const scriptName = utils_1.IS_WINDOWS ? 'install-dotnet.ps1' : 'install-dotnet.sh'; const escapedScript = path_1.default - .join(__dirname, '..', 'externals', scriptName) + .join(__dirname, '..', '..', 'externals', scriptName) .replace(/'/g, "''"); let scriptArguments; let scriptPath = ''; diff --git a/src/installer.ts b/src/installer.ts index ef9e993..8dc26bc 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -188,7 +188,7 @@ export class DotnetCoreInstaller { ]; const scriptName = IS_WINDOWS ? 'install-dotnet.ps1' : 'install-dotnet.sh'; const escapedScript = path - .join(__dirname, '..', 'externals', scriptName) + .join(__dirname, '..', '..', 'externals', scriptName) .replace(/'/g, "''"); let scriptArguments: string[]; let scriptPath = '';