Skip to content

Commit ea17a05

Browse files
authored
Add missing semicolons (#159)
Follow-up to #154
1 parent 9fbc246 commit ea17a05

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dist/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,9 @@ try {
332332
const sshAddCmdInput = core.getInput('ssh-add-cmd');
333333
const gitCmdInput = core.getInput('git-cmd');
334334

335-
const sshAgentCmd = sshAgentCmdInput ? sshAgentCmdInput : sshAgentCmdDefault
336-
const sshAddCmd = sshAddCmdInput ? sshAddCmdInput : sshAddCmdDefault
337-
const gitCmd = gitCmdInput ? gitCmdInput : gitCmdDefault
335+
const sshAgentCmd = sshAgentCmdInput ? sshAgentCmdInput : sshAgentCmdDefault;
336+
const sshAddCmd = sshAddCmdInput ? sshAddCmdInput : sshAddCmdDefault;
337+
const gitCmd = gitCmdInput ? gitCmdInput : gitCmdDefault;
338338

339339
if (!privateKey) {
340340
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.");

0 commit comments

Comments
 (0)