From 432290619acbc047ce3cdb8214348b56285fee0b Mon Sep 17 00:00:00 2001 From: Brooks Swinnerton Date: Fri, 30 Jul 2021 13:46:41 -0400 Subject: [PATCH] Remove semicolons --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 2acea8c..9936a8b 100644 --- a/main.js +++ b/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) {