diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2022-02-09 23:20:40 +0100 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2022-02-09 23:20:40 +0100 |
| commit | defd3c898817055c37b00f65b549e5d816cec395 (patch) | |
| tree | caef73ed3aa923696512e25f67e854601632e9af | |
| parent | 403b34260de3c58f377854e4f03efa03054b4cc7 (diff) | |
.
| -rwxr-xr-x | install.sh | 4 | ||||
| -rw-r--r-- | python/requirements.pip310.txt | 2 |
2 files changed, 2 insertions, 4 deletions
@@ -10,8 +10,8 @@ install_python_venv() { LONG=$1 SHORT=${LONG//\./} - PYTHON_BIN=$(command -v "python$LONG") - if [ ! -z $PYTHON_BIN ]; then + PYTHON_BIN=$(command -v "python$LONG" || true) + if [ -n $PYTHON_BIN ]; then PYTHON_DIR=~/opt/python$SHORT PIP_BIN=$PYTHON_DIR/bin/pip$LONG diff --git a/python/requirements.pip310.txt b/python/requirements.pip310.txt index ba9ba4d..40f9460 100644 --- a/python/requirements.pip310.txt +++ b/python/requirements.pip310.txt @@ -1,5 +1,3 @@ doit jedi-language-server pip -sublime-music -ydiff |
