Show stacktrace if available, in addition to error message

This commit is contained in:
Benoit Daloze
2022-02-27 17:51:33 +01:00
parent 7baabd2c5d
commit cd9d3de43b
2 changed files with 2 additions and 2 deletions
Generated Vendored
+1 -1
View File
@@ -60832,7 +60832,7 @@ async function run() {
try { try {
await setupRuby() await setupRuby()
} catch (error) { } catch (error) {
core.setFailed(error.message) core.setFailed(error.stack)
} }
} }
+1 -1
View File
@@ -23,7 +23,7 @@ export async function run() {
try { try {
await setupRuby() await setupRuby()
} catch (error) { } catch (error) {
core.setFailed(error.message) core.setFailed(error.stack)
} }
} }