From ea17a056b908d85ca1f46c275ab91389eb65c9fa Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 28 Jan 2023 02:20:24 -0500 Subject: [PATCH] Add missing semicolons (#159) Follow-up to #154 --- dist/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/index.js b/dist/index.js index ce61449..bdebdb8 100644 --- a/dist/index.js +++ b/dist/index.js @@ -332,9 +332,9 @@ try { const sshAddCmdInput = core.getInput('ssh-add-cmd'); const gitCmdInput = core.getInput('git-cmd'); - const sshAgentCmd = sshAgentCmdInput ? sshAgentCmdInput : sshAgentCmdDefault - const sshAddCmd = sshAddCmdInput ? sshAddCmdInput : sshAddCmdDefault - const gitCmd = gitCmdInput ? gitCmdInput : gitCmdDefault + const sshAgentCmd = sshAgentCmdInput ? sshAgentCmdInput : sshAgentCmdDefault; + const sshAddCmd = sshAddCmdInput ? sshAddCmdInput : sshAddCmdDefault; + const gitCmd = gitCmdInput ? gitCmdInput : gitCmdDefault; if (!privateKey) { core.setFailed("The ssh-private-key argument is empty. Maybe the secret has not been configured, or you are using a wrong secret name in your workflow file.");