Skip to content

Commit 807ae01

Browse files
author
Amelia Wattenbeger
committed
stringify exec errors
1 parent 9e95b51 commit 807ae01

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15097,7 +15097,8 @@ function execWithOutput(command, options) {
1509715097
resolve(res.toString());
1509815098
},
1509915099
stderr: function(res) {
15100-
reject(res);
15100+
core.info(res.toString());
15101+
reject(res.toString());
1510115102
}
1510215103
}
1510315104
});

src/index.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ function execWithOutput(command, options) {
5353
resolve(res.toString())
5454
},
5555
stderr: function (res) {
56-
reject(res)
56+
core.info(res.toString())
57+
reject(res.toString())
5758
}
5859
}
5960
})

0 commit comments

Comments
 (0)