File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,18 @@ set -e # Exit immediately if a simple command exits with a non-zero status
4
4
5
5
new_flag=" -Wall -Werror=format-security"
6
6
7
+ echo " Add '$new_flag ' to *FLAGS?"
8
+ echo " "
9
+ echo " IMPORTANT NOTE: Only do this for BioC >= 3.21 + R >= 4.5."
10
+ echo " If you're installing R < 4.5 (for BioC < 3.21 builds), then"
11
+ echo " use the R-fix-flags-old.sh script instead."
12
+ echo " "
7
13
while true ; do
8
- echo " Add '$new_flag ' to *FLAGS?"
9
- echo " IMPORTANT NOTE: Only do this for BioC >= 3.21 + R >= 4.5."
10
- echo " If you're installing R < 4.5 (for BioC < 3.21 builds), then"
11
- echo " use the R-fix-flags-old.sh script instead."
12
- read -p " y/n? " yn
14
+ read -p " Please answer yes or no: " yn
13
15
case $yn in
14
16
[Yy]* ) break ;;
15
17
[Nn]* ) exit ;;
16
- * ) echo " Please answer yes or no. " ;;
18
+ * ) ;;
17
19
esac
18
20
done
19
21
You can’t perform that action at this time.
0 commit comments