Windows: Make.ps1 default to build binaries

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2017-02-01 09:54:04 -08:00
parent 2b412120b6
commit 674247f5f0
1 changed files with 2 additions and 2 deletions

View File

@ -319,8 +319,8 @@ Try {
# Handle the "-Binary" shortcut to build both client and daemon.
if ($Binary) { $Client = $True; $Daemon = $True }
# Make sure we have something to do
if (-not($Client) -and -not($Daemon) -and -not($DCO) -and -not($PkgImports) -and -not($GoFormat) -and -not($TestUnit)) { Throw 'Nothing to do. Try adding "-All" for everything I can do' }
# Default to building the binaries if not asked for anything explicitly.
if (-not($Client) -and -not($Daemon) -and -not($DCO) -and -not($PkgImports) -and -not($GoFormat) -and -not($TestUnit)) { $Client=$True; $Daemon=$True }
# Verify git is installed
if ($(Get-Command git -ErrorAction SilentlyContinue) -eq $nil) { Throw "Git does not appear to be installed" }