crc4/scripts/git.sh
Ari Archer 86343ea5af
init
Signed-off-by: Ari Archer <ari@ari.lt>
2024-04-01 22:02:59 +03:00

15 lines
176 B
Bash
Executable file

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