]> git.phdru.name Git - bookmarks_db.git/commitdiff
Feat(venv): Use `venv` if `virtualenv` is not available
authorOleg Broytman <phd@phdru.name>
Wed, 28 Feb 2024 19:03:42 +0000 (22:03 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 28 Feb 2024 19:03:42 +0000 (22:03 +0300)
bkmk-venv

index f68a0a89ab9bf6c71e015f06fde53f11efee83dc..751416f4f767872df4dc6a5192afd9e9b1eb9393 100644 (file)
--- a/bkmk-venv
+++ b/bkmk-venv
@@ -3,7 +3,7 @@
 
 if [ -z "$VIRTUAL_ENV" ]; then
     test -d .venv && . .venv/bin/activate || {
-        python3 -m virtualenv .venv &&
+        { python3 -m virtualenv .venv || python3 -m venv .venv; } &&
         . .venv/bin/activate &&
         pip install --compile --upgrade beautifulsoup4 lxml m_lib.full
     } || exit 1