Skip to content

Commit f6a091c

Browse files
author
Damian Rouson
authored
Fixes #216 (#218)
* Fixes #216 It appears the problem was a mismatch between an argument name in install.sh-usage (--branch) and the corresponding argument in prerequisites/build.sh (--install-branch). * Doc fix: alphabetize build.sh --help output
1 parent 8eab169 commit f6a091c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

install.sh-usage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-b --branch [arg] Install the specified repository development branch.
1+
-b --install-branch [arg] Install the specified repository development branch.
22
-B --list-branches [arg] List the available branches in the specified package's repository.
33
-c --with-c [arg] Use specified C compiler.
44
-C --with-cxx [arg] Use specified C++ compiler.

prerequisites/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ info "__os: ${__os}"
8888
info "__usage: ${__usage}"
8989
info "LOG_LEVEL: ${LOG_LEVEL}"
9090

91-
info "-b (--branch): ${arg_b} "
91+
info "-b (--install-branch): ${arg_b} "
9292
info "-B (--list-branches): ${arg_B} "
9393
info "-c (--with-c): ${arg_c} "
9494
info "-C (--with-cxx): ${arg_C} "

prerequisites/build.sh-usage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
-f --with-fortran [arg] Specify Fortran compiler location. Default="gfortran"
99
-h --help This page.
1010
-i --install-prefix [arg] Install package in specified path. Default="${OPENCOARRAYS_SRC_DIR%/}/prerequisites/installations/"
11-
-j --num-threads [arg] Number of threads to use when invoking make. Default="1"
1211
-I --install-version [arg] Package version to install. (To see default, use -V or --print-version)
12+
-j --num-threads [arg] Number of threads to use when invoking make. Default="1"
1313
-l --list-packages List the packages this script can install.
1414
-m --with-cmake [arg] Use the specified CMake installation. Default="cmake"
1515
-M --with-mpi [arg] Use the specified MPI installation.

0 commit comments

Comments
 (0)