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.
2 parents 2b63d9b + da1255d commit b84a015Copy full SHA for b84a015
buckaroo/QuickstartCommand.fs
@@ -66,7 +66,8 @@ let private defaultMain =
66
|> String.concat "\n"
67
68
let isValidProjectName (candidate : string) =
69
- (Regex(@"^[A-Za-z0-9\-_]{2,32}$")).IsMatch(candidate)
+ (Regex(@"^[A-Za-z0-9\-_]{2,32}$")).IsMatch(candidate) &&
70
+ candidate.ToLower () <> "app"
71
72
let requestProjectName (context : TaskContext) = async {
73
let mutable candidate = ""
0 commit comments