flask-ishuman/scripts/git.sh
Ari Archer 4cdc9a0e65
Update information.
Signed-off-by: Ari Archer <ari@ari.lt>
2025-01-02 11:36:37 +02:00

15 lines
175 B
Bash
Executable file

#!/usr/bin/env sh
set -xe
main() {
tox
git add -A
git commit -s
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
./scripts/pypi.sh
}
main "$@"