Fix python-stow-versions

DIB_PYTHON_PREFIX variable was neither defined nor needed.

Change-Id: I36ebe5a6dee511c0c89cc251e9ec340ec7ed915d
This commit is contained in:
Dmitriy Rabotyagov 2020-09-13 13:47:45 +03:00 committed by Dmitriy Rabotyagov (noonedeadpunk)
parent c160538465
commit 75a5415dbc

View File

@ -7,9 +7,9 @@ set -eu
set -o pipefail
DIB_PYTHON_FILES=('/usr/local/bin/pyenv-install', \
'/usr/localbin/pyenv-uninstall', '/usr/local/bin/python-build', \
'/usr/local/bin/pyenv-uninstall', '/usr/local/bin/python-build', \
'/usr/local/share/python-build', '/pyenv')
for path in ${DIB_PYTHON_FILES}; do
rm -rf ${DIB_PYTHON_PREFIX}/${path}
rm -rf ${path}
done