diff options
Diffstat (limited to 'dev.sh')
-rwxr-xr-x | dev.sh | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -27,6 +27,11 @@ case $1 in $PIP install poetry ;; + install-latest-build) + $PIP install `ls dist/*.tar.gz -t -c -1 | head -1` \ + && echo "For uninstall please use '$PIP uninstall ...'" + ;; + poetry-dev-deps) PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring \ poetry install --no-root @@ -72,11 +77,6 @@ case $1 in poetry build ;; - install-latest-build) - $PIP install `ls dist/*.tar.gz -t -c -1 | head -1` \ - && echo "For uninstall please use '$PIP uninstall ...'" - ;; - install) $0 install-poetry \ && $0 poetry-build \ |