mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2025-12-09 14:20:42 -07:00
Remove type descriptors
Whoops! This isn't typescript
This commit is contained in:
4
main.js
4
main.js
@@ -83,10 +83,10 @@ async function main() {
|
||||
|
||||
const execOptions = {};
|
||||
execOptions.listeners = {
|
||||
stdout: (data: Buffer) => {
|
||||
stdout: function(data) {
|
||||
core.setOutput('stdout', data.toString());
|
||||
},
|
||||
stderr: (data: Buffer) => {
|
||||
stderr: function(data) {
|
||||
core.setOutput('stderr', data.toString());
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user