1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-22 15:32:18 +00:00

Remove semicolons

This commit is contained in:
Brooks Swinnerton 2021-07-30 13:46:41 -04:00
parent 036e50818a
commit 432290619a
No known key found for this signature in database
GPG key ID: 72743B7DE552E25A

View file

@ -81,7 +81,7 @@ async function main() {
process.env.ANSIBLE_FORCE_COLOR = "True"
const execOptions = {};
const execOptions = {}
execOptions.listeners = {
stdout: function(data) {
core.setOutput('stdout', data.toString());
@ -89,7 +89,7 @@ async function main() {
stderr: function(data) {
core.setOutput('stderr', data.toString());
}
};
}
await exec.exec(cmd.join(' '), execOptions)
} catch (error) {