Skip to content

Commit 3660806

Browse files
committed
Remove the --no-ask option from configure_fastr script
1 parent 8685e23 commit 3660806

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

com.oracle.truffle.r.native/run/fastr_tools/configure_fastr

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,15 @@ FASTR_HOME_DIR="$( dirname "$r_bin" )"
4040

4141
function printHelp {
4242
echo "Checks FastR requirements and creates personal library directory (R_LIBS_USER)."
43-
echo "usage: configure_fastr [--help] [--no-ask]"
43+
echo "usage: configure_fastr [--help]"
4444
}
4545

46-
NO_ASK=0
4746
while [[ $# -gt 0 ]]; do
4847
case $1 in
4948
--help)
5049
printHelp
5150
exit 0
5251
;;
53-
--no-ask)
54-
NO_ASK=1
55-
;;
5652
*)
5753
>&2 echo "Unknown option '$1'"
5854
printHelp

0 commit comments

Comments
 (0)