From ab97a076f22a6bb4c52cca9e202f91a6718c6d70 Mon Sep 17 00:00:00 2001 From: jbeisner Date: Wed, 17 Jan 2018 17:56:34 +0000 Subject: [PATCH] Putting back 'docker' and 'stage0' parameters in the usage. --- run-build.ps1 | 2 +- run-build.sh | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/run-build.ps1 b/run-build.ps1 index ba3d9a09a..385ea1c8d 100644 --- a/run-build.ps1 +++ b/run-build.ps1 @@ -16,7 +16,7 @@ param( if($Help) { - Write-Output "Usage: .\run-build.ps1 [-Configuration ] [-Architecture ] [-NoPackage] [-Help]" + Write-Output "Usage: .\run-build.ps1 [-Configuration ] [-Architecture ] [-NoPackage] [-NoBuild] [-Help]" Write-Output "" Write-Output "Options:" Write-Output " -Configuration Build the specified Configuration (Debug or Release, default: Debug)" diff --git a/run-build.sh b/run-build.sh index 508f0f571..cce2ed49f 100755 --- a/run-build.sh +++ b/run-build.sh @@ -103,7 +103,7 @@ while [[ $# > 0 ]]; do shift ;; --help) - echo "Usage: $0 [--configuration ] [--architecture ] [--skip-prereqs] [--nopackage] [--nobuild ] [--help]" + echo "Usage: $0 [--configuration ] [--architecture ] [--skip-prereqs] [--nopackage] [--nobuild ] [--docker ] [--stage0 ] [--help]" echo "" echo "Options:" echo " --configuration Build the specified Configuration (Debug or Release, default: Debug)" @@ -111,6 +111,8 @@ while [[ $# > 0 ]]; do echo " --skip-prereqs Skip checks for pre-reqs in dotnet_install" echo " --nopackage Skip packaging targets" echo " --nobuild Skip building, showing the command that would be used to build" + echo " --docker Build in Docker using the Dockerfile located in scripts/docker/IMAGENAME" + echo " --stage0 Set the stage0 source directory. The default is to download it from Azure." echo " --help Display this help message" exit 0 ;;