1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix make.ps1 client build for Windows

Always clone the client to the docker directory, even if the specified
client repository is a fork. This is simpler than modifying the build
command to specify the package path of the fork.

Signed-off-by: John Stephens <johnstep@docker.com>
This commit is contained in:
John Stephens 2017-05-15 12:29:25 -07:00
parent 55ed80f78a
commit 632a8635a0
No known key found for this signature in database
GPG key ID: 240549B2101E94D4

View file

@ -411,7 +411,7 @@ Try {
$saveGOPATH = $env:GOPATH
Try {
$env:GOPATH = $tempLocation
$dockerCliRoot = "$env:GOPATH\src\$($dockerCliRepo.Split("/", 3)[2])"
$dockerCliRoot = "$env:GOPATH\src\github.com\docker\cli"
Write-Host "INFO: Cloning client repository..."
Invoke-Expression "git clone -q $dockerCliRepo $dockerCliRoot"
if ($LASTEXITCODE -ne 0) { Throw "Failed to clone client repository $dockerCliRepo" }