Move R path to install_dependencies

This commit is contained in:
2024-08-04 21:44:05 -04:00
parent a451aa4783
commit 7ea809e442

View File

@@ -553,9 +553,9 @@ interactive_header() {
if [[ ${#MODULES[@]} -eq 0 && ${#EXCLUDE_MODULES[@]} -eq 0 ]]; then if [[ ${#MODULES[@]} -eq 0 && ${#EXCLUDE_MODULES[@]} -eq 0 ]]; then
cat <<-EOF cat <<-EOF
${underline}Enter modules(s) to run${nounderline} ${underline}Enter modules(s) to run${nounderline}
* <Enter> for all * <Enter> for all
* A comma-separated list of module numbers (2,5,12) * A comma-separated list of module numbers (2,5,12)
* 0 for none * 0 for none
EOF EOF
((YES)) || read -r -p "(all): " response ((YES)) || read -r -p "(all): " response
echo "" echo ""
@@ -576,11 +576,11 @@ interactive_header() {
while :; do while :; do
cat <<-EOF cat <<-EOF
${underline}Enter submodules(s) to run followed by its arguments in a comma-separated string${nounderline} ${underline}Enter submodules(s) to run followed by its arguments in a comma-separated string${nounderline}
* <Enter> for none * <Enter> for none
* A comma-separated list of submodules and their arguments * A comma-separated list of submodules and their arguments
* Both arguments are required * Both arguments are required
* Quote the argument string if it contains whitespace * Quote the argument string if it contains whitespace
* Example: ${ALL_SUBMODULES[0]},\"arg1,arg2,arg3...\",${ALL_SUBMODULES[1]},\"arg1,arg2,arg3...\" * Example: ${ALL_SUBMODULES[0]},\"arg1,arg2,arg3...\",${ALL_SUBMODULES[1]},\"arg1,arg2,arg3...\"
EOF EOF
((YES)) || read -r -p "(none): " response ((YES)) || read -r -p "(none): " response
echo "" echo ""