diff --git a/bau.sh b/bau.sh new file mode 100755 index 0000000..6d4e7f3 --- /dev/null +++ b/bau.sh @@ -0,0 +1,11 @@ +#!/bin/sh +pwd=$PWD +rm -rf dist +for dir in */ ; do + if [ -r "$dir/pyproject.toml" ] ; then + cd "$dir" + hatch build + cd "$pwd" + fi +done +hatch publish -r sebastian \ No newline at end of file