summaryrefslogtreecommitdiff
path: root/dev.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dev.sh')
-rwxr-xr-xdev.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/dev.sh b/dev.sh
index e5b0a37..6407c0b 100755
--- a/dev.sh
+++ b/dev.sh
@@ -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 \