]> gitweb.factorcode.org Git - factor.git/commitdiff
build.sh: adding full-report to help
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 21 Jan 2022 17:59:01 +0000 (09:59 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 21 Jan 2022 17:59:01 +0000 (09:59 -0800)
build.sh

index 43f3afb1c4b6d97fb6436d6cd7ed24ac2517fe16..0d4f9aecfc57d8f311cfdbae8091e58c7d2425bd 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -777,6 +777,7 @@ usage() {
     $ECHO "  net-bootstrap - recompile, download a boot image, bootstrap"
     $ECHO "  make-target - find and print the os-arch-cpu string"
     $ECHO "  report|info - print the build variables"
+    $ECHO "  full-report - print the build variables, check programs and libraries"
     $ECHO "  update-boot-image - get the boot image for the current branch"
     $ECHO ""
     $ECHO "If you are behind a firewall, invoke as:"
@@ -821,7 +822,7 @@ case "$1" in
     make-target) FIND_MAKE_TARGET=true; ECHO=false; find_build_info; exit_script ;;
     report|info) find_build_info ;;
     full-report) find_build_info; check_installed_programs; check_libraries ;;
-    update-boot-image) find_build_info; check_installed_programs; update_boot_image;;
+    update-boot-image) find_build_info; check_installed_programs; update_boot_image ;;
     *) usage ;;
 esac