10 lines
134 B
Bash
Executable file
10 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
./clean.sh
|
|
./build.sh
|
|
|
|
source venv/bin/activate
|
|
|
|
# python -m twine upload dist/*
|