Skip to content

Commit

Permalink
Merge pull request #300 from nl-brett-stime/patch-1
Browse files Browse the repository at this point in the history
Fixes #299
  • Loading branch information
kmoe committed Mar 17, 2023
2 parents bdad9ba + 5d03c41 commit 91e9337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get_git.go
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,9 @@ func setupGitEnv(cmd *exec.Cmd, sshKeyFile string) {
sshKeyFile = strings.Replace(sshKeyFile, `\`, `/`, -1)
}
sshCmd = append(sshCmd, "-i", sshKeyFile)
env = append(env, strings.Join(sshCmd, " "))
}

env = append(env, strings.Join(sshCmd, " "))
cmd.Env = env
}

Expand Down

0 comments on commit 91e9337

Please sign in to comment.