NPOTB: Always use hl2sdk-proxy-repo in checkout-deps (#1236)
This commit is contained in:
parent
5ed2f79217
commit
bc89e54f6d
13
tools/checkout-deps.ps1
vendored
13
tools/checkout-deps.ps1
vendored
@ -47,16 +47,23 @@ Function Checkout-Repo
|
||||
If ($Origin)
|
||||
{
|
||||
Set-Location $Name
|
||||
& git remote rm origin 2>&1 | Write-Host
|
||||
& git remote add origin $Origin 2>&1 | Write-Host
|
||||
& git remote set-url origin $Origin 2>&1 | Write-Host
|
||||
Set-Location ..
|
||||
}
|
||||
}
|
||||
Else
|
||||
{
|
||||
Set-Location $Name
|
||||
If ($Origin)
|
||||
{
|
||||
& git remote set-url origin ..\$Repo 2>&1 | Write-Host
|
||||
}
|
||||
& git checkout $Branch 2>&1 | Write-Host
|
||||
& git pull origin $Branch 2>&1 | Write-Host
|
||||
If ($Origin)
|
||||
{
|
||||
& git remote set-url origin $Origin 2>&1 | Write-Host
|
||||
}
|
||||
Set-Location ..
|
||||
}
|
||||
}
|
||||
@ -81,7 +88,7 @@ else
|
||||
}
|
||||
|
||||
$SDKS | % {
|
||||
Checkout-Repo -Name "hl2sdk-$_" -Branch $_ "hl2sdk-proxy-repo" -Repo "https://github.com/alliedmodders/hl2sdk.git"
|
||||
Checkout-Repo -Name "hl2sdk-$_" -Branch $_ -Repo "hl2sdk-proxy-repo" "https://github.com/alliedmodders/hl2sdk.git"
|
||||
}
|
||||
|
||||
Checkout-Repo -Name "ambuild" -Branch "master" -Repo "https://github.com/alliedmodders/ambuild.git"
|
||||
|
9
tools/checkout-deps.sh
vendored
9
tools/checkout-deps.sh
vendored
@ -74,14 +74,19 @@ checkout ()
|
||||
git clone $repo -b $branch $name
|
||||
if [ -n "$origin" ]; then
|
||||
cd $name
|
||||
git remote rm origin
|
||||
git remote add origin $origin
|
||||
git remote set-url origin $origin
|
||||
cd ..
|
||||
fi
|
||||
else
|
||||
cd $name
|
||||
if [ -n "$origin" ]; then
|
||||
git remote set-url origin ../$repo
|
||||
fi
|
||||
git checkout $branch
|
||||
git pull origin $branch
|
||||
if [ -n "$origin" ]; then
|
||||
git remote set-url origin $origin
|
||||
fi
|
||||
cd ..
|
||||
fi
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user