From 789793ccb095fa0ec8279de5d098a3f867a65754 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 16 Dec 2021 12:29:46 -0800 Subject: [PATCH] build.cmd: syntax fixes. --- build.cmd | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.cmd b/build.cmd index 209910e87e..dbb36399c3 100644 --- a/build.cmd +++ b/build.cmd @@ -12,22 +12,22 @@ if "%1"=="/?" ( ) else if "%1"=="" ( set _git_pull=1 set _compile_vm=1 - set _bootimage="download" + set _bootimage=download set _bootstrap_factor=1 ) else if "%1"=="latest" ( set _git_pull=1 set _compile_vm=1 - set _bootimage="download" + set _bootimage=download set _bootstrap_factor=1 ) else if "%1"=="update" ( set _git_pull=1 set _compile_vm=1 - set _bootimage="download" + set _bootimage=download set _bootstrap_factor=1 ) else if "%1"=="compile" ( set _git_pull=0 set _compile_vm=1 - set _bootimage="current" + set _bootimage=current set _bootstrap_factor=0 ) else if "%1"=="self-bootstrap" ( set _git_pull=1 @@ -37,12 +37,12 @@ if "%1"=="/?" ( ) else if "%1"=="bootstrap" ( set _git_pull=0 set _compile_vm=0 - set _bootimage="current" + set _bootimage=current set _bootstrap_factor=1 ) else if "%1"=="net-bootstrap" ( set _git_pull=0 set _compile_vm=1 - set _bootimage="download" + set _bootimage=download set _bootstrap_factor=1 ) else goto usage @@ -122,9 +122,9 @@ goto :EOF echo Usage: build.cmd [command] echo Updates the working copy, cleans and builds the vm using nmake, echo fetches a boot image, and bootstraps factor. -echo +echo: echo The branch that bootstraps is the one that is checked out locally. -echo +echo: echo compile - recompile vm echo update - git pull, recompile vm, download a boot image, bootstrap echo self-bootstrap - git pull, make a boot image, bootstrap -- 2.34.1