Skip to content

Commit

Permalink
Fix OS ports (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
llongley authored Jan 16, 2019
1 parent 41beb96 commit 89aa87e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
17 changes: 17 additions & 0 deletions tools/UpdateBuildMachineGitInstalls.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[CmdLetBinding()]
Param(
)

Import-Module -Name $PSScriptRoot\BuildMachineUtils.psm1 -DisableNameChecking

$adalPath = Get-AdalPath

Write-Verbose "ADALPath: $adalPath"
Add-Type -Path "$adalPath\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll"

$result = Queue-BuildOnMachine -MachineName "PKGESWINUI24" -BuildId "17093" # Install GVFS
Write-Host "PKGESWINUI24: $($result._links.web.href)"
$result = Queue-BuildOnMachine -MachineName "PKGESWINUI25" -BuildId "17093" # Install GVFS
Write-Host "PKGESWINUI25: $($result._links.web.href)"
$result = Queue-BuildOnMachine -MachineName "PKGESWINUI44" -BuildId "17093" # Install GVFS
Write-Host "PKGESWINUI44: $($result._links.web.href)"
3 changes: 2 additions & 1 deletion tools/WindowsPorting/PerformDEPControlsPort.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,8 @@ echo.
echo Pulling latest from %1...
echo.

call git pull --force
call git fetch
call git merge FETCH_HEAD
call :CheckErrorLevel "Pull" || goto Cleanup
goto:eof

Expand Down

0 comments on commit 89aa87e

Please sign in to comment.