Skip to content

Commit

Permalink
Fixed nuget restore.
Browse files Browse the repository at this point in the history
  • Loading branch information
CatGirlsAreLife committed Oct 7, 2018
1 parent 620cd56 commit a686339
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions update-externals.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ $env:elskomnewpth = Join-Path (Get-Location) Els_kom_new
if(!(Test-Path -Path $env:elskomnewpth))
{
git clone -q https://github.com/Elskom/Els_kom_new.git --recursive
Set-Location -Path Els_kom_new
Set-Location -Path Els_kom_new/PCbuild
nuget restore
msbuild PCbuild/pcbuild.sln /nologo /verbosity:m /m
Set-Location -Path ..
msbuild pcbuild.sln /nologo /verbosity:m /m
Set-Location -Path ../..
}
else
{
Set-Location -Path Els_kom_new
Set-Location -Path Els_kom_new/PCbuild
git pull -q
nuget restore
msbuild PCbuild/pcbuild.sln /nologo /verbosity:m /m
Set-Location -Path ..
msbuild pcbuild.sln /nologo /verbosity:m /m
Set-Location -Path ../..
}
Set-Location -Path ..

0 comments on commit a686339

Please sign in to comment.