-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add --list argument to list all pages for current platform & common #47
Comments
@psibi I would like to work on this & open a Pull Request to add this argument, please confirm that you would be interested in merging a PR for this. |
Sounds good to me. |
@psibi Ok I'll start working on this. There don't seem to be any Contributing guidelines in this repo - is there anything I should keep in mind while making my PR? |
I think you might have to update ci as I haven't touched it in quite sometime. Probably convert it to use GitHub actions if that makes things easier. |
@psibi I'm not familiar with Azure CI - can you please explain what's the role of |
@psibi I'm having an issue with # tldr from Ubuntu apt package
$ tldr --version
0.6.4
# running tldr built from source
$ stack exec tldr --version
Invalid option `--version`
Usage: stack exec COMMAND The commands are defined in versionOption :: Parser (a -> a)
versionOption = infoOption (showVersion version) (long "version" <> short 'v' <> help "Show version") Steps followed to build and run: stack setup # install GHC Haskell compiler
stack build # build executable, installing dependencies
stack test # install test dependencies and run all tests - all tests pass
stack exec tldr # runs fine
stack exec tldr --version # error --version not recognized (full output shown above) Any idea why the defined commands in the source code are not working? Am I misunderstanding something about building and running from the source? Or is this a bug? |
Musl based stack is used for building static Haskell binary.
I don't think any YAML file is being important. You can probably see an example here of how to use github actions: https://github.com/fakedata-haskell/fakedata/blob/master/.github/workflows/tests.yml
Can you try this:
I don't think so as I have latest version in my machine:
|
Thanks - that worked 👍 |
In the output of
tldr tldr
, this is the last sample command (it must be present in the othertldr
clients):This
--list
CLI argument should also be added totldr-hs
.The text was updated successfully, but these errors were encountered: