9 lines
151 B
Bash
Executable file
9 lines
151 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
rm -fr venv
|
|
rm -fr dist
|
|
rm -fr .mypy_cache
|
|
rm -fr src/okipy/__pycache__
|
|
rm -fr src/okipy.egg-info
|