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:
parent
036e50818a
commit
432290619a
1 changed files with 2 additions and 2 deletions
4
main.js
4
main.js
|
@ -81,7 +81,7 @@ async function main() {
|
||||||
|
|
||||||
process.env.ANSIBLE_FORCE_COLOR = "True"
|
process.env.ANSIBLE_FORCE_COLOR = "True"
|
||||||
|
|
||||||
const execOptions = {};
|
const execOptions = {}
|
||||||
execOptions.listeners = {
|
execOptions.listeners = {
|
||||||
stdout: function(data) {
|
stdout: function(data) {
|
||||||
core.setOutput('stdout', data.toString());
|
core.setOutput('stdout', data.toString());
|
||||||
|
@ -89,7 +89,7 @@ async function main() {
|
||||||
stderr: function(data) {
|
stderr: function(data) {
|
||||||
core.setOutput('stderr', data.toString());
|
core.setOutput('stderr', data.toString());
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
await exec.exec(cmd.join(' '), execOptions)
|
await exec.exec(cmd.join(' '), execOptions)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|
Loading…
Reference in a new issue