Skip to content

Commit

Permalink
update cli message
Browse files Browse the repository at this point in the history
Co-authored-by: Josiah Parry <josiah.parry@gmail.com>
  • Loading branch information
kbvernon and JosiahParry committed Sep 7, 2024
1 parent 2a9f74a commit dc543e3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions R/use_msrv.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@ use_msrv <- function(version, path = "."){
if (is.na(prev)) {
update_description("SystemRequirements", cur, desc_path = desc_path)
} else if (!identical(cur, prev)) {
cli::cli_ul(
c(
"The SystemRequirements field in the {.file DESCRIPTION} file is already set.",
"Please update it manually if needed."
)
cli::cli_ul(

Check warning on line 50 in R/use_msrv.R

View workflow job for this annotation

GitHub Actions / lint

file=R/use_msrv.R,line=50,col=2,[indentation_linter] Indentation should be 4 spaces but is 2 spaces.
c(
"The SystemRequirements field in the {.file DESCRIPTION} file is already set.",
"Please update it manually if needed.",
"{.code SystemRequirements: {cur}}"
)
)
}

Expand Down

0 comments on commit dc543e3

Please sign in to comment.