diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-02-10 14:32:48 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-02-12 20:00:44 +0100 |
commit | 32a64dbb26250c05b5f48728d3d6c9213098b808 (patch) | |
tree | ec1c275503bf683ee40adf9463fb2e58dd93b6c4 /eclass | |
parent | pypi.eclass: Normalize wheel filenames (diff) | |
download | gentoo-32a64dbb26250c05b5f48728d3d6c9213098b808.tar.gz gentoo-32a64dbb26250c05b5f48728d3d6c9213098b808.tar.bz2 gentoo-32a64dbb26250c05b5f48728d3d6c9213098b808.zip |
pypi.eclass: Add `--unpack` to usage error in pypi_wheel_url
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/pypi.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index c7b9604807eb..a3c38aa5f3ec 100644 --- a/eclass/pypi.eclass +++ b/eclass/pypi.eclass @@ -134,7 +134,7 @@ pypi_wheel_url() { fi if [[ ${#} -gt 4 ]]; then - die "Usage: ${FUNCNAME} <project> [<version> [<python-tag> [<abi-platform-tag>]]]" + die "Usage: ${FUNCNAME} [--unpack] <project> [<version> [<python-tag> [<abi-platform-tag>]]]" fi local filename=$(pypi_wheel_name "${@}") |