Skip to content

Commit d2825f7

Browse files
committed
do not complain when R version is 4 or above. Issue #28.
1 parent 1e4020a commit d2825f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ version <- getRversion()
132132
currentVersion <- sprintf("%d.%d", version\$major, version\$minor)
133133
message("R version:",version)
134134
usebiocmanager<-TRUE
135-
if ( version\$major < 3 || (version\$major>=3 && version\$minor<5) ) {
135+
if ( version\$major < 3 || (version\$major==3 && version\$minor<5) ) {
136136
cat("ERROR: R version should be 3.5 or above\n")
137137
q(status=1)
138138
}

0 commit comments

Comments
 (0)