瀏覽代碼

Remove __pycache__ directories before release. (#182)

Bas Couwenberg 5 年之前
父節點
當前提交
2e2a6ff5b1
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      doc/howto_release.md

+ 1 - 0
doc/howto_release.md

@@ -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 *
 ```