mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2025-12-09 14:20:42 -07:00
Remove semicolons
This commit is contained in:
4
main.js
4
main.js
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user