mirror of
https://github.com/actions/setup-python.git
synced 2025-07-02 23:53:47 +00:00
Improved error output during setup
This commit is contained in:
parent
654aa00a6e
commit
533746a645
3 changed files with 10 additions and 1 deletions
3
dist/index.js
vendored
3
dist/index.js
vendored
|
@ -6356,6 +6356,9 @@ function installPython(workingDirectory) {
|
|||
listeners: {
|
||||
stdout: (data) => {
|
||||
core.debug(data.toString().trim());
|
||||
},
|
||||
stderr: (data) => {
|
||||
core.error(data.toString().trim());
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue