We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e885046 commit 9708d2aCopy full SHA for 9708d2a
R/model.R
@@ -217,9 +217,9 @@ CmdStanModel <- R6::R6Class(
217
private$include_paths_ <- args$include_paths
218
}
219
if (!is.null(exe_file)) {
220
- ext <- if (os_is_windows()) ".exe" else ""
221
if (is.null(stan_file)) {
222
- checkmate::assert_file_exists(exe_file, access = "r", extension = ext)
+ print(exe_file)
+ checkmate::assert_file_exists(exe_file, access = "r", extension = cmdstan_ext())
223
224
private$exe_file_ <- absolute_path(exe_file)
225
0 commit comments