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 61e94cc commit a374d4aCopy full SHA for a374d4a
R/create.R
@@ -57,6 +57,10 @@ quarto_create_project <- function(
57
"https://quarto.org/docs/projects/quarto-projects.html"
58
)
59
60
+ if (rlang::is_missing(name)) {
61
+ cli::cli_abort("You need to provide {.arg name} for the new project.")
62
+ }
63
+
64
# If title is provided, check for Quarto version 1.5.15 or higher
65
if (title != name) {
66
check_quarto_version(
@@ -66,10 +70,6 @@ quarto_create_project <- function(
70
67
71
}
68
72
69
- if (rlang::is_missing(name)) {
- cli::cli_abort("You need to provide {.arg name} for the new project.")
- }
-
73
if (rlang::is_interactive() && !no_prompt) {
74
folder_msg <- if (name != ".") {
75
"as a folder named {.strong {name}}"
0 commit comments