Skip to content

Commit

Permalink
Remove __pycache__ directories before release. (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastic authored and neteler committed Nov 6, 2019
1 parent 7a916ab commit 2e2a6ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions doc/howto_release.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ find . -name '*.rej' | xargs rm
find . -name '*.o' | xargs rm
find . -name '*.pyc' | xargs rm
find . -name 'OBJ.*' | xargs rm -r
find . -name '__pycache__' | xargs rm -r
rm -f gui/wxpython/menustrings.py gui/wxpython/build_ext.pyc gui/wxpython/xml/menudata.xml gui/wxpython/xml/module_tree_menudata.xml
chmod -R a+r *
```
Expand Down

0 comments on commit 2e2a6ff

Please sign in to comment.