summaryrefslogtreecommitdiff
path: root/dev.sh
diff options
context:
space:
mode:
authorAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-03-06 23:45:54 +0200
committerAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-03-06 23:45:54 +0200
commitf8f338f50e95588a72769a397904186a4c192a1a (patch)
tree931597d6c98f34bcf75fb3bf60fa3c8d37e52176 /dev.sh
parentc20c3b9bab48f0908f3547765126c4d30d11ca5a (diff)
seems to work with pipHEADmain
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 \