10 lines
116 B
Bash
Executable File
10 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "clean" ]; then
|
|
rm -rf build
|
|
rm -rf dist
|
|
rm -rf *.egg-info
|
|
fi
|
|
|
|
python -m build .
|