mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-04-05 23:09:49 +00:00
Fix error message
This commit is contained in:
4
dist/index.js
vendored
4
dist/index.js
vendored
@ -398,9 +398,9 @@ class DotnetCoreInstaller {
|
||||
ignoreReturnCode: true,
|
||||
env: process.env
|
||||
};
|
||||
const { exitCode, stdout } = yield exec.getExecOutput(`"${scriptPath}"`, scriptArguments, getExecOutputOptions);
|
||||
const { exitCode, stderr } = yield exec.getExecOutput(`"${scriptPath}"`, scriptArguments, getExecOutputOptions);
|
||||
if (exitCode) {
|
||||
throw new Error(`Failed to install dotnet ${exitCode}. ${stdout}`);
|
||||
throw new Error(`Failed to install dotnet, exit code: ${exitCode}. ${stderr}`);
|
||||
}
|
||||
return this.outputDotnetVersion(dotnetVersion.value);
|
||||
});
|
||||
|
Reference in New Issue
Block a user