diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-01-18 10:29:07 -0800 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-01-18 10:29:07 -0800 |
commit | 566a8d1b9dd3827e4a573940ca74df21d2cb2095 (patch) | |
tree | 89ec79606aaaea59daabcf5d3d6cc05bd55dd547 /hacking | |
parent | 365af69c3ee8cbbc1585f97b85b921bc05ce7b91 (diff) | |
download | ansible-566a8d1b9dd3827e4a573940ca74df21d2cb2095.tar.gz |
Fix issue with mixing quoting and glo9bbing.
Diffstat (limited to 'hacking')
-rw-r--r-- | hacking/env-setup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hacking/env-setup b/hacking/env-setup index f8b973b1a4..8ff6362df9 100644 --- a/hacking/env-setup +++ b/hacking/env-setup @@ -36,10 +36,10 @@ expr "$MANPATH" : "${PREFIX_MANPATH}.*" > /dev/null || export MANPATH="$PREFIX_M gen_egg_info() { python setup.py egg_info - if [ -e "$PREFIX_PYTHONPATH/ansible*.egg-info" ] ; then - rm -r "$PREFIX_PYTHONPATH/ansible*.egg-info" + if [ -e "$PREFIX_PYTHONPATH/ansible.egg-info" ] ; then + rm -r "$PREFIX_PYTHONPATH/ansible.egg-info" fi - mv "ansible*.egg-info" "$PREFIX_PYTHONPATH" + mv "ansible.egg-info" "$PREFIX_PYTHONPATH" } if [ "$ANSIBLE_HOME" != "$PWD" ] ; then |