瀏覽代碼

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>
John Stephens 8 年之前
父節點
當前提交
632a8635a0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      hack/make.ps1

+ 1 - 1
hack/make.ps1

@@ -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" }