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" 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) {