Skip to content

Commit 4037656

Browse files
committed
Put short flags first in help message so everything lines up better and they are easier to discover.
1 parent 6eb9403 commit 4037656

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

build.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ PRINT_USAGE() {
2020
echo " build.sh [options]"
2121
echo ""
2222
echo " options:"
23-
echo " --cxx : Path to Clang++ (see example below)"
24-
echo " --cc : Path to Clang (see example below)"
25-
echo " --debug, -d : Debug build (by default Release build)"
26-
echo " --help, -h : Show help"
27-
echo " --icu : Path to ICU include folder (see example below)"
28-
echo " --jobs, -j : Multicore build (i.e. -j=3 for 3 cores)"
29-
echo " --ninja, -n : Build with ninja instead of make"
30-
echo " --test-build, -t : Test build (by default Release build)"
31-
echo " --verbose, -v : Display verbose output including all options"
23+
echo " --cxx : Path to Clang++ (see example below)"
24+
echo " --cc : Path to Clang (see example below)"
25+
echo " -d, --debug : Debug build (by default Release build)"
26+
echo " -h, --help : Show help"
27+
echo " --icu : Path to ICU include folder (see example below)"
28+
echo " -j, --jobs : Multicore build (i.e. -j=3 for 3 cores)"
29+
echo " -n, --ninja : Build with ninja instead of make"
30+
echo " -t, --test-build : Test build (by default Release build)"
31+
echo " -v, --verbose : Display verbose output including all options"
3232
echo ""
3333
echo " example:"
3434
echo " ./build.sh --cxx=/path/to/clang++ --cc=/path/to/clang -j=2"

0 commit comments

Comments
 (0)