From: Doug Coleman Date: Wed, 30 Mar 2016 01:44:32 +0000 (-0700) Subject: build.sh/build.cmd: support both latest and update X-Git-Tag: unmaintained~1357 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=82960e81f3c42de01b605490d8a2c19ac0a10dda build.sh/build.cmd: support both latest and update --- diff --git a/build.cmd b/build.cmd index b0430bbfb7..918a12e3c5 100644 --- a/build.cmd +++ b/build.cmd @@ -7,6 +7,8 @@ if "%1"=="/?" ( set _bootimage_version=latest ) else if "%1"=="latest" ( set _bootimage_version=latest +) else if "%1"=="update" ( + set _bootimage_version=latest ) else if "%1"=="clean" ( set _bootimage_version=clean ) else goto usage diff --git a/build.sh b/build.sh index e2677737ad..3424ba1a79 100755 --- a/build.sh +++ b/build.sh @@ -681,7 +681,7 @@ usage() { $ECHO " deps-macosx - install git on MacOSX using port" $ECHO " self-update - git pull, recompile, make local boot image, bootstrap" $ECHO " quick-update - git pull, refresh-all, save" - $ECHO " update - git pull, recompile, download a boot image, bootstrap" + $ECHO " update|latest - git pull, recompile, download a boot image, bootstrap" $ECHO " bootstrap - bootstrap with existing boot image" $ECHO " net-bootstrap - recompile, download a boot image, bootstrap" $ECHO " make-target - find and print the os-arch-cpu string" @@ -713,6 +713,7 @@ case "$1" in self-update) update; make_boot_image; bootstrap;; quick-update) update; refresh_image ;; update) update; download_and_bootstrap ;; + latest) update; download_and_bootstrap ;; bootstrap) get_config_info; bootstrap ;; net-bootstrap) net_bootstrap_no_pull ;; make-target) FIND_MAKE_TARGET=true; ECHO=false; find_build_info; exit_script ;;