Skip to content

Commit

Permalink
fix warning from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
barrettk committed Sep 19, 2024
1 parent f59c5a4 commit 7eddb3e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions R/bootstrap-model.R
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,11 @@ setup_bootstrap_run <- function(
get_model_working_directory(orig_mod)
)
cli::cli_div(theme = list(.code = list(color = "blue"), .val = list(color = "red3")))
rlang::warn(
"The parent model ({.code orig_mod_name}) has not been submitted",
"i" = "Consider executing {.code orig_mod_name} to perform additional checks"
cli::cli_warn(
c(
"The parent model ({.code orig_mod_name}) has not been submitted",
"i" = "Consider executing {.code orig_mod_name} to perform additional checks"
)
)
}

Expand Down

0 comments on commit 7eddb3e

Please sign in to comment.