mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #11967 from jody-frankowski/fix-env-setup-rm2
Fix rm call in hacking/env-setup. Since it is sourced from a user shell,
This commit is contained in:
commit
3b75f3d26a
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ expr "$MANPATH" : "${PREFIX_MANPATH}.*" > /dev/null || export MANPATH="$PREFIX_M
|
|||
gen_egg_info()
|
||||
{
|
||||
if [ -e "$PREFIX_PYTHONPATH/ansible.egg-info" ] ; then
|
||||
rm -r "$PREFIX_PYTHONPATH/ansible.egg-info"
|
||||
\rm -r "$PREFIX_PYTHONPATH/ansible.egg-info"
|
||||
fi
|
||||
python setup.py egg_info
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue