From 4af4c291225a165e5a9b0e5a65c450e81e5aecf0 Mon Sep 17 00:00:00 2001 From: Claudio Bandera Date: Mon, 28 Nov 2022 20:05:21 +0100 Subject: Proposal for fix of #312 (#313) * Proposal for fix of #312 This change moves the directory separator into the `PIPX_DIR` variable in order to not introduce an error in the case pipx has already been installed systemwide. * Bump patch version of python feature to 1.0.16 --- src/python/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/python/install.sh') diff --git a/src/python/install.sh b/src/python/install.sh index d823cc9..0c3f9e0 100755 --- a/src/python/install.sh +++ b/src/python/install.sh @@ -450,11 +450,11 @@ if [[ "${INSTALL_PYTHON_TOOLS}" = "true" ]] && [[ $(python --version) != "" ]]; if ! type pipx > /dev/null 2>&1; then pip3 install --disable-pip-version-check --no-cache-dir --user pipx 2>&1 /tmp/pip-tmp/bin/pipx install --pip-args=--no-cache-dir pipx - PIPX_DIR="/tmp/pip-tmp/bin" + PIPX_DIR="/tmp/pip-tmp/bin/" fi for util in "${DEFAULT_UTILS[@]}"; do if ! type ${util} > /dev/null 2>&1; then - "${PIPX_DIR}/pipx" install --system-site-packages --pip-args '--no-cache-dir --force-reinstall' ${util} + "${PIPX_DIR}pipx" install --system-site-packages --pip-args '--no-cache-dir --force-reinstall' ${util} else echo "${util} already installed. Skipping." fi -- cgit v1.2.3