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