]> gitweb.factorcode.org Git - factor.git/commitdiff
build.cmd: syntax fixes.
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 16 Dec 2021 20:29:46 +0000 (12:29 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 16 Dec 2021 20:29:46 +0000 (12:29 -0800)
build.cmd

index 209910e87ea5c75b0a1318c6a9b34da2a3074068..dbb36399c36df7ff74c211422c7a7758c0956ac0 100644 (file)
--- 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