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
As for now, we do something like fromMaybe defaultCommands <$> getArgs where getArgs :: Effect (Maybe Commands). The default command is Search (i.e. start an interactive CLI session) with some reasonable defaults.
Thus, we are unable to pass arguments to the default command when it's not specified explicitly. E.g. this fails:
As for now, we do something like
fromMaybe defaultCommands <$> getArgs
wheregetArgs :: Effect (Maybe Commands)
. The default command isSearch
(i.e. start an interactive CLI session) with some reasonable defaults.Thus, we are unable to pass arguments to the default command when it's not specified explicitly. E.g. this fails:
The text was updated successfully, but these errors were encountered: