diff --git a/appveyor.yml b/appveyor.yml index bb9d5e8..fdcb8e5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,7 +26,7 @@ build: verbosity: minimal test: off artifacts: -- path: bin/$(configuration)/plugins/*.* +- path: bin/$(configuration)/plugins/*.plugin.* name: myartifact before_deploy: - ps: ./appveyor-deploy.ps1 diff --git a/update-externals.ps1 b/update-externals.ps1 index d9afba0..9212c53 100644 --- a/update-externals.ps1 +++ b/update-externals.ps1 @@ -3,17 +3,19 @@ $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/PCbuild + Set-Location -Path Els_kom_new nuget restore msbuild pcbuild.sln /nologo /verbosity:m /m - Set-Location -Path ../.. + Set-Location -Path ../ } else { - Set-Location -Path Els_kom_new/PCbuild + Set-Location -Path Els_kom_new + git reset -q --hard git pull -q nuget restore msbuild pcbuild.sln /nologo /verbosity:m /m - Set-Location -Path ../.. + Set-Location -Path ../ } Set-Location -Path .. +nuget restore