From 0d4c72f7fcd005a2d82dcc69142f9e3eab286c0e Mon Sep 17 00:00:00 2001 From: Sebastian Tobie Date: Sun, 10 Mar 2024 09:46:34 +0100 Subject: [PATCH] added an buildscript to build packages --- bau.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 bau.sh 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