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 c46eb51 commit 44c2e1aCopy full SHA for 44c2e1a
cabal-install/src/Distribution/Client/Init/Interactive/Command.hs
@@ -328,7 +328,11 @@ licensePrompt flags = getLicense flags $ do
328
329
case simpleParsec l of
330
Nothing -> do
331
- putStrLn "The license must be a valid SPDX expression."
+ putStrLn ( "The license must be a valid SPDX expression:"
332
+ ++ "\n - On the SPDX License List: https://spdx.org/licenses/"
333
+ ++ "\n - NONE, if you do not want to grant any license"
334
+ ++ "\n - LicenseRef-( alphanumeric | - | . )+"
335
+ )
336
licensePrompt flags
337
Just l' -> return l'
338
where
0 commit comments