We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cabal upload
sdist
When I do cabal upload, I get
cabal: the 'upload' command expects at least one .tar.gz archive.
If no archive is given on the command line, it could first do an sdist and then upload the thus generated tar.gz.
tar.gz
My workaround is the following cabal-upload shell script:
cabal-upload
cabal sdist | tail -1 | xargs cabal upload "$@" cabal haddock --haddock-for-hackage | tail -1 | xargs cabal upload -d "$@"
The text was updated successfully, but these errors were encountered:
makes sense to me, related #3837 and #5064
Sorry, something went wrong.
No branches or pull requests
When I do
cabal upload
, I getIf no archive is given on the command line, it could first do an
sdist
and then upload the thus generatedtar.gz
.My workaround is the following
cabal-upload
shell script:The text was updated successfully, but these errors were encountered: