]> gitweb.factorcode.org Git - factor.git/commitdiff
build.sh: Fix broken command.
authorDoug Coleman <doug.coleman@gmail.com>
Tue, 26 Jun 2018 00:07:53 +0000 (17:07 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Tue, 26 Jun 2018 00:07:53 +0000 (17:07 -0700)
build.sh

index 3ad0af5f061cc81641c6fbdd98b43ddb91e7f520..7b1c5632da5cc06c95947c10c1a09e01560d6cd2 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -734,8 +734,7 @@ usage() {
     $ECHO "  net-bootstrap - recompile, download a boot image, bootstrap"
     $ECHO "  make-target - find and print the os-arch-cpu string"
     $ECHO "  report - print the build variables"
-    $ECHO "  check-boot-image-exists - check that there is a boot image for current branch"
-    $ECHO "  get-boot-image - get the boot image for the current branch of for master"
+    $ECHO "  update-boot-image - get the boot image for the current branch of for master"
     $ECHO ""
     $ECHO "If you are behind a firewall, invoke as:"
     $ECHO "env GIT_PROTOCOL=http $0 <command>"
@@ -769,7 +768,6 @@ case "$1" in
     make-target) FIND_MAKE_TARGET=true; ECHO=false; find_build_info; exit_script ;;
     report) find_build_info ;;
     full-report) find_build_info; check_installed_programs; check_libraries ;;
-    check-boot-image-exists) find_build_info; check_installed_programs; check_boot_image_exists;;
     update-boot-image) find_build_info; check_installed_programs; update_boot_image;;
     *) usage ;;
 esac