Move R path to install_dependencies

This commit is contained in:
2024-08-04 21:41:55 -04:00
parent b77f459692
commit 1d4848c01e

View File

@@ -517,7 +517,7 @@ interactive_header() {
for ((c=1; c<2; c++)); do # safe loop that only runs once for ((c=1; c<2; c++)); do # safe loop that only runs once
cat <<-EOF cat <<-EOF
${underline}Enter project number(s) to analyze${nounderline} ${underline}Enter project number(s) to analyze${nounderline}
* <Enter> for the latest project (default) * <Enter> for the latest project
* A comma-separated list of project numbers: 2,5,12 * A comma-separated list of project numbers: 2,5,12
* 0 to add a new project * 0 to add a new project
EOF EOF
@@ -552,8 +552,8 @@ interactive_header() {
if [[ ${#MODULES[@]} -eq 0 && ${#EXCLUDE_MODULES[@]} -eq 0 ]]; then if [[ ${#MODULES[@]} -eq 0 && ${#EXCLUDE_MODULES[@]} -eq 0 ]]; then
cat <<-EOF cat <<-EOF
Enter modules(s) to run: ${underline}Enter modules(s) to run${nounderline}
* <Enter> for all (default) * <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
@@ -575,8 +575,8 @@ interactive_header() {
if [[ ${#MODULES[@]} -eq 0 && ${#EXCLUDE_MODULES[@]} -eq 0 && ${#SUBMODULES[@]} -eq 0 ]]; then if [[ ${#MODULES[@]} -eq 0 && ${#EXCLUDE_MODULES[@]} -eq 0 && ${#SUBMODULES[@]} -eq 0 ]]; then
while :; do while :; do
cat <<-EOF cat <<-EOF
Enter submodules(s) to run followed by its arguments in a comma-separated string ${underline}Enter submodules(s) to run followed by its arguments in a comma-separated string${nounderline}
* <Enter> for none (default) * <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