Skip to content

Commit

Permalink
lastfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-madison committed Nov 18, 2014
1 parent a99ce18 commit 356c347
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rsBasePrep.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ Function Get-TempPullDSC {
try {
chdir $($d.wD)
Write-EventLog -LogName DevOps -Source BasePrep -EntryType Information -EventId 1000 -Message "Cloning $(("[email protected]:", $d.gCA -join ''), ($($d.mR), ".git" -join '') -join '/')"
Start -Wait $gitExe -ArgumentList "clone --branch $d.br $((('[email protected]:', $($d.gCA) -join ''), ($($d.mR), '.git' -join '')) -join '/')"
Start -Wait $gitExe -ArgumentList "clone --branch $($d.br) $((('[email protected]:', $($d.gCA) -join ''), ($($d.mR), '.git' -join '')) -join '/')"
if(Test-Path -Path $($d.wD, $($d.mR) -join '\')) {
$isDone = $true
}
Expand Down Expand Up @@ -426,7 +426,7 @@ Function Get-TempPullDSC {
try {
chdir $($d.wD)
Write-EventLog -LogName DevOps -Source BasePrep -EntryType Information -EventId 1000 -Message "Cloning $($d.mR , ".git" -join '') $((("https://", "##REDACTED_GITHUB_APIKEY##", "@github.com" -join ''), $d.gCA, $($d.mR , ".git" -join '')) -join '/')"
Start -Wait $gitExe -ArgumentList "clone $((("https://", $d.gAPI, "@github.com" -join ''), $d.gCA, $($d.mR , ".git" -join '')) -join '/')"
Start -Wait $gitExe -ArgumentList "clone --branch $($d.br) $((("https://", $d.gAPI, "@github.com" -join ''), $d.gCA, $($d.mR , ".git" -join '')) -join '/')"
if(Test-Path -Path $($d.wD, $($d.mR) -join '\')) {
$isDone = $true
}
Expand Down

0 comments on commit 356c347

Please sign in to comment.