Skip to content

Commit 57eb00e

Browse files
committed
fix: #770, get_cmdstan_flags('STANCFLAGS') in recursive make extraneous output
1 parent 357a07e commit 57eb00e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/utils.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ get_cmdstan_flags <- function(flag_name) {
678678
cmdstan_path <- cmdstanr::cmdstan_path()
679679
flags <- wsl_compatible_run(
680680
command = "make",
681-
args = c(paste0("print-", flag_name)),
681+
args = c("--no-print-directory", paste0("print-", flag_name)),
682682
wd = cmdstan_path
683683
)$stdout
684684

0 commit comments

Comments
 (0)