lerafoxqueen/LeraFoxQueen/clean.sh

10 lines
180 B
Bash
Executable File

#!/bin/sh
echo -n $( dirname -- "$( readlink -f -- "$0" )" ) > pwd.txt
CWD=$(cat pwd.txt)
cd "${CWD}"
rm -rf "${CWD}/.venv"
find . -name __pycache__ -type d -exec rm -vrf {} \;