20 lines
274 B
Bash
Executable file
20 lines
274 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -xe
|
|
|
|
main() {
|
|
echo 'did u deactivate the venv'
|
|
read -r _
|
|
|
|
tox
|
|
|
|
./scripts/docindex.sh
|
|
|
|
git add -A
|
|
git commit -s
|
|
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
|
|
|
|
[ ! "$DO_PYPI" ] || ./scripts/pypi.sh
|
|
}
|
|
|
|
main "$@"
|