Skip to content

Commit

Permalink
Fix naming clash in short flag for repl dependencies (#352)
Browse files Browse the repository at this point in the history
Fix #350
  • Loading branch information
f-f authored Aug 1, 2019
1 parent 2d349cc commit 63c2c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Spago.hs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ parser = do
docsFormat = CLI.optional $ CLI.opt Purs.parseDocsFormat "format" 'f' "Docs output format (markdown | html | etags | ctags)"
jobsLimit = CLI.optional (CLI.optInt "jobs" 'j' "Limit the amount of jobs that can run concurrently")
nodeArgs = many $ CLI.opt (Just . ExtraArg) "node-args" 'a' "Argument to pass to node (run/test only)"
replPackageNames = many $ CLI.opt (Just . PackageName) "dependency" 'd' "Package name to add to the REPL as dependency"
replPackageNames = many $ CLI.opt (Just . PackageName) "dependency" 'D' "Package name to add to the REPL as dependency"
sourcePaths = many $ CLI.opt (Just . SourcePath) "path" 'p' "Source path to include"

packageName = CLI.arg (Just . PackageName) "package" "Specify a package name. You can list them with `list-packages`"
Expand Down

0 comments on commit 63c2c21

Please sign in to comment.