Skip to content

Commit

Permalink
Set enable_first_step to FALSE if it is in new_params
Browse files Browse the repository at this point in the history
  • Loading branch information
kemihak committed Nov 29, 2024
1 parent bb7ba72 commit 03a6688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/updateAdequacySettings.R
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ updateAdequacySettings <- function(include_adq_patch = NULL,
}

if (opts[["antaresVersion"]] >= 860) {
if ("enable_first_step" %in% names(new_params) & new_params[["enable_first_step"]]) {
if ("enable_first_step" %in% names(new_params)) {
message("Property enable_first_step is disabled for the moment. Set to FALSE.\n")
new_params[["enable_first_step"]] <- FALSE
}
Expand Down

0 comments on commit 03a6688

Please sign in to comment.