Skip to content

Commit

Permalink
Merge pull request #297 from hjoelr/bugfix/setenv
Browse files Browse the repository at this point in the history
Fixed syntax error on setenv calls.
  • Loading branch information
dahlbyk authored Aug 5, 2016
2 parents 5ed5c05 + 9895084 commit fce1135
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions GitUtils.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ function Get-SshAgent() {
if ($null -ne $sshAgentProcess) {
return $agentPid
} else {
setenv 'SSH_AGENT_PID', $null
setenv 'SSH_AUTH_SOCK', $null
setenv 'SSH_AGENT_PID' $null
setenv 'SSH_AUTH_SOCK' $null
}
}
}
Expand Down Expand Up @@ -373,8 +373,8 @@ function Stop-SshAgent() {
Stop-Process $agentPid
}

setenv 'SSH_AGENT_PID', $null
setenv 'SSH_AUTH_SOCK', $null
setenv 'SSH_AGENT_PID' $null
setenv 'SSH_AUTH_SOCK' $null
}
}

Expand Down

0 comments on commit fce1135

Please sign in to comment.