You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
promptNonemptyText (Just currentDirectoryName) "Please enter a project name"
351
354
>>= ( \case
352
355
Just projectName ->pure projectName
353
356
Nothing->do
354
357
putErrorLn "Invalid project name. Project names must begin with a letter and contain only alphanumerical characters, spaces, dashes (-), and underscores(_)."
355
-
promptProjectName
358
+
promptProjectName cdn
356
359
)
357
360
. mkProjectName
358
361
@@ -429,7 +432,7 @@ promptProjectType nixBinaryPaths runConfig devContainerConfig = do
429
432
False->pureNoJavaBuild
430
433
True->
431
434
SetUpJavaBuild.ArtefactId
432
-
<$> promptNonemptyText "Enter your Maven ArtefactId (e.g. the 'demo' in 'com.example.demo'): "
435
+
<$> promptNonemptyText Nothing"Enter your Maven ArtefactId (e.g. the 'demo' in 'com.example.demo'): "
0 commit comments