mirror of
https://github.com/PowerShell/PowerShell.git
synced 2024-11-23 09:43:57 +08:00
update googletet submodule in bootstrap on linux and osx (#1805)
This commit is contained in:
parent
8c4d848520
commit
33fcdf37e5
@ -663,6 +663,13 @@ function Start-PSBootstrap {
|
||||
Push-Location $PSScriptRoot/tools
|
||||
|
||||
try {
|
||||
# Update googletest submodule for linux native cmake
|
||||
if ($IsLinux -or $IsOSX) {
|
||||
$Submodule = "$PSScriptRoot/src/libpsl-native/test/googletest"
|
||||
Remove-Item -Path $Submodule -Recurse -Force -ErrorAction SilentlyContinue
|
||||
git submodule update --init -- $submodule
|
||||
}
|
||||
|
||||
# Install ours and .NET's dependencies
|
||||
$Deps = @()
|
||||
if ($IsUbuntu) {
|
||||
|
Loading…
Reference in New Issue
Block a user