File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ Param ([Switch ]$Fast )
12Push-Location $psscriptroot
23. " $psscriptroot \..\..\lib\install.ps1"
34
4- Write-Host " Install dependencies ..."
5- Invoke-Expression " $psscriptroot \install.ps1"
5+ if (! $Fast ) {
6+ Write-Host " Install dependencies ..."
7+ Invoke-Expression " $psscriptroot \install.ps1"
8+ }
69
710$output = " $psscriptroot \bin"
8- Get-ChildItem " $psscriptroot \packages\Newtonsoft.*\lib\net45\*.dll" - File | ForEach-Object { Copy-Item $_ $output }
11+ if (! $Fast ) {
12+ Get-ChildItem " $psscriptroot \packages\Newtonsoft.*\lib\net45\*.dll" - File | ForEach-Object { Copy-Item $_ $output }
13+ }
914Write-Output ' Compiling Scoop.Validator.cs ...'
1015& " $psscriptroot \packages\Microsoft.Net.Compilers\tools\csc.exe" / deterministic / platform:anycpu / nologo / optimize / target:library / reference:" $output \Newtonsoft.Json.dll" , " $output \Newtonsoft.Json.Schema.dll" / out:" $output \Scoop.Validator.dll" Scoop.Validator.cs
1116Write-Output ' Compiling validator.cs ...'
You can’t perform that action at this time.
0 commit comments