Commit 88d3751c by Brian Coca

Merge pull request #12217 from thyming/hacking-remove-pyc

Delete all compiled python files when running hacking/env-setup
parents 099d1797 cba4642d
...@@ -57,8 +57,10 @@ fi ...@@ -57,8 +57,10 @@ fi
cd "$ANSIBLE_HOME" cd "$ANSIBLE_HOME"
if [ "$verbosity" = silent ] ; then if [ "$verbosity" = silent ] ; then
gen_egg_info > /dev/null 2>&1 gen_egg_info > /dev/null 2>&1
find . -type f -name "*.pyc" -delete > /dev/null 2>&1
else else
gen_egg_info gen_egg_info
find . -type f -name "*.pyc" -delete
fi fi
cd "$current_dir" cd "$current_dir"
) )
......
...@@ -43,6 +43,7 @@ if test -e $PREFIX_PYTHONPATH/ansible*.egg-info ...@@ -43,6 +43,7 @@ if test -e $PREFIX_PYTHONPATH/ansible*.egg-info
rm -r $PREFIX_PYTHONPATH/ansible*.egg-info rm -r $PREFIX_PYTHONPATH/ansible*.egg-info
end end
mv ansible*egg-info $PREFIX_PYTHONPATH mv ansible*egg-info $PREFIX_PYTHONPATH
find . -type f -name "*.pyc" -delete
popd popd
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment