From e7764585eb1225a9d04f4959e304fe3ae97b87c8 Mon Sep 17 00:00:00 2001 From: Siphalor Date: Tue, 4 Nov 2025 22:30:20 +0100 Subject: [PATCH] fix: Make publish-all script compatible with Bourne Shell --- publish-all.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/publish-all.sh b/publish-all.sh index 7866006..79b021a 100644 --- a/publish-all.sh +++ b/publish-all.sh @@ -1,6 +1,8 @@ -pushd tweed5 || exit +#!/usr/bin/env sh + +cd tweed5 || exit ../gradlew publish -popd || exit -pushd tweed5-minecraft || exit +cd .. || exit +cd tweed5-minecraft || exit ./helpers/run-each-mc.sh ../gradlew publish -popd || exit +cd .. || exit