mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-23 08:23:42 +01:00
12 lines
276 B
Bash
12 lines
276 B
Bash
|
#!/usr/bin/env bash
|
||
|
find . -name "*.pyc" -exec rm -rf {} \;
|
||
|
find . -name "__pycache__" -exec rm -rf {} \;
|
||
|
find . -name "*.orig" -exec rm -rf {} \;
|
||
|
rm -rf .cache/
|
||
|
rm -rf build/
|
||
|
rm -rf builddocs/
|
||
|
rm -rf dist/
|
||
|
rm -rf deb_dist/
|
||
|
rm src/podman-compose.egg-info -rf
|
||
|
rm builddocs.zip
|