File tree Expand file tree Collapse file tree 6 files changed +37
-0
lines changed
mathy_pydoc_markdown/tools Expand file tree Collapse file tree 6 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+ rm -rf .env/
4+ rm -rf build/
5+ rm -rf dist/
6+ rm -rf mathy_alpha_sm.egg-info/
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+ rm -rf .env/
4+ rm -rf mathy_mkdocs.egg-info/
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+ rm -rf .env/
4+ rm -rf .pytest_cache/
5+ rm -rf pydoc_markdown.egg-info/
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+ rm -rf .env/
4+ rm -rf .pytest_cache/
5+ rm -rf .mypy_cache/
6+ rm -rf build/
7+ rm -rf dist/
8+ rm -rf mathy.egg-info/
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+ rm -rf .env/
4+ rm -rf .pytest_cache/
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+ echo " Cleaning all setup/build files for apps..."
4+ echo " You will have to run the root 'sh tools/setup.sh' again after this."
5+ libraries=" mathy_python mathy_mkdocs mathy_pydoc_markdown website"
6+ for library in $libraries
7+ do
8+ echo " === Cleaning: $library "
9+ (cd libraries/$library && sh tools/clean.sh)
10+ done
You can’t perform that action at this time.
0 commit comments