mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-22 15:32:18 +00:00
Remove type descriptors
Whoops! This isn't typescript
This commit is contained in:
parent
d82d4c8f2c
commit
036e50818a
1 changed files with 2 additions and 2 deletions
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());
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue