stack-1.3.0: src/Stack/Options/SolverParser.hs
module Stack.Options.SolverParser where
import Options.Applicative
import Options.Applicative.Builder.Extra
-- | Parser for @solverCmd@
solverOptsParser :: Parser Bool
solverOptsParser = boolFlags False
"update-config"
"Automatically update stack.yaml with the solver's recommendations"
idm