Skip to content

Commit 73a1cb2

Browse files
committed
don't check CmdStan version when selecting make command
1 parent 381be13 commit 73a1cb2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: R/utils.R

+1-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ arch_is_aarch64 <- function() {
9696
make_cmd <- function() {
9797
if (Sys.getenv("MAKE") != "") {
9898
Sys.getenv("MAKE")
99-
} else if ((cmdstan_version() < "2.35.0") && os_is_windows() && !os_is_wsl() &&
100-
(Sys.getenv("CMDSTANR_USE_RTOOLS") == "")) {
99+
} else if (os_is_windows() && !os_is_wsl() && (Sys.getenv("CMDSTANR_USE_RTOOLS") == "")) {
101100
"mingw32-make.exe"
102101
} else {
103102
"make"

0 commit comments

Comments
 (0)