1
0
Fork 0
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:
Brooks Swinnerton 2021-07-30 13:39:29 -04:00
parent d82d4c8f2c
commit 036e50818a
No known key found for this signature in database
GPG key ID: 72743B7DE552E25A

View file

@ -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());
}
};