File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Fixes an issue with executing ``kolla-ansible`` when installed via ``pip
5
+ install --user``. `LP#1915527
6
+ <https://bugs.launchpad.net/kolla-ansible/+bug/1915527>`__
Original file line number Diff line number Diff line change @@ -75,6 +75,8 @@ function find_base_dir {
75
75
BASEDIR=/usr/share/kolla-ansible
76
76
elif [[ ${dir_name} == " /usr/local/bin" ]]; then
77
77
BASEDIR=/usr/local/share/kolla-ansible
78
+ elif [[ ${dir_name} == ~ /.local/bin ]]; then
79
+ BASEDIR=~ /.local/share/kolla-ansible
78
80
elif [[ -n ${VIRTUAL_ENV} ]] && [[ ${dir_name} == " $( readlink -e " ${VIRTUAL_ENV} /bin" ) " ]]; then
79
81
if test -f ${VIRTUAL_ENV} /lib/python* /site-packages/kolla-ansible.egg-link; then
80
82
# Editable install.
You can’t perform that action at this time.
0 commit comments