Skip to content
Snippets Groups Projects
Commit 1c5891e2 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Reorder options in cdthulHu order.

parent 38337a5a
No related branches found
No related tags found
No related merge requests found
...@@ -23,16 +23,18 @@ usage () { ...@@ -23,16 +23,18 @@ usage () {
echo " ALLEGRO64DIR, ALLEGRO64SDIR (64-bit Allegro and SMP Allegro, respectively), ALLEGRODIR, and" echo " ALLEGRO64DIR, ALLEGRO64SDIR (64-bit Allegro and SMP Allegro, respectively), ALLEGRODIR, and"
echo " ALLEGROSDIR." echo " ALLEGROSDIR."
echo "OPTIONS:" echo "OPTIONS:"
echo " -d -- debug mode" echo " -c -- clean load test."
echo " -d -- debug mode."
echo " -t -- test interactively."
echo " -h -- show this message." echo " -h -- show this message."
echo " -u -- upgrade tests." echo " -u -- upgrade tests."
echo " -c -- clean load test" echo " -l -- load systems tests."
echo " -l -- load systems tests" echo " -H -- extract all asdf versions to upgrade from."
echo " -t -- test interactively" echo " -u -- upgrade tests, we already told you."
echo " -H -- extract all asdf versions to upgrade from"
} }
unset DEBUG_ASDF_TEST upgrade clean_load load_systems test_interactively extract_all unset DEBUG_ASDF_TEST upgrade clean_load load_systems test_interactively extract_all
SHELL=/bin/sh SHELL=/bin/sh
export SHELL DEBUG_ASDF_TEST GCL_ANSI ASDF_OUTPUT_TRANSLATIONS export SHELL DEBUG_ASDF_TEST GCL_ANSI ASDF_OUTPUT_TRANSLATIONS
...@@ -65,28 +67,28 @@ fi ...@@ -65,28 +67,28 @@ fi
while getopts "cdtHulhu" OPTION while getopts "cdtHulhu" OPTION
do do
case $OPTION in case $OPTION in
c)
clean_load=t
;;
d) d)
DEBUG_ASDF_TEST=t DEBUG_ASDF_TEST=t
;; ;;
t)
test_interactively=t
;;
h)
usage
exit 1
;;
u) u)
upgrade=t upgrade=t
;; ;;
c)
clean_load=t
;;
l) l)
load_systems=t load_systems=t
;; ;;
t)
test_interactively=t
;;
H) H)
extract_all=t extract_all=t
;; ;;
h)
usage
exit 1
;;
esac esac
done done
shift $(($OPTIND - 1)) shift $(($OPTIND - 1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment