Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit ab97a07

Browse files
author
jbeisner
committed
Putting back 'docker' and 'stage0' parameters in the usage.
1 parent b1cc035 commit ab97a07

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

run-build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ param(
1616

1717
if($Help)
1818
{
19-
Write-Output "Usage: .\run-build.ps1 [-Configuration <CONFIGURATION>] [-Architecture <ARCHITECTURE>] [-NoPackage] [-Help]"
19+
Write-Output "Usage: .\run-build.ps1 [-Configuration <CONFIGURATION>] [-Architecture <ARCHITECTURE>] [-NoPackage] [-NoBuild] [-Help]"
2020
Write-Output ""
2121
Write-Output "Options:"
2222
Write-Output " -Configuration <CONFIGURATION> Build the specified Configuration (Debug or Release, default: Debug)"

run-build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,16 @@ while [[ $# > 0 ]]; do
103103
shift
104104
;;
105105
--help)
106-
echo "Usage: $0 [--configuration <CONFIGURATION>] [--architecture <ARCHITECTURE>] [--skip-prereqs] [--nopackage] [--nobuild ] [--help]"
106+
echo "Usage: $0 [--configuration <CONFIGURATION>] [--architecture <ARCHITECTURE>] [--skip-prereqs] [--nopackage] [--nobuild ] [--docker <IMAGENAME>] [--stage0 <DIRECTORY>] [--help]"
107107
echo ""
108108
echo "Options:"
109109
echo " --configuration <CONFIGURATION> Build the specified Configuration (Debug or Release, default: Debug)"
110110
echo " --architecture <ARCHITECTURE> Build the specified architecture (x64 or x86 (supported only on Windows), default: x64)"
111111
echo " --skip-prereqs Skip checks for pre-reqs in dotnet_install"
112112
echo " --nopackage Skip packaging targets"
113113
echo " --nobuild Skip building, showing the command that would be used to build"
114+
echo " --docker <IMAGENAME> Build in Docker using the Dockerfile located in scripts/docker/IMAGENAME"
115+
echo " --stage0 <DIRECTORY> Set the stage0 source directory. The default is to download it from Azure."
114116
echo " --help Display this help message"
115117
exit 0
116118
;;

0 commit comments

Comments
 (0)