From 4cd304b4c63bcf358361c9edb91455a401694477 Mon Sep 17 00:00:00 2001 From: "mr. M" Date: Fri, 11 Oct 2024 19:28:34 +0200 Subject: [PATCH] Refactor unify-twilight-and-stable.sh script to use 'sh' command to execute merge-to-branch.sh --- scripts/unify-twilight-and-stable.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/unify-twilight-and-stable.sh b/scripts/unify-twilight-and-stable.sh index 6f09a3836..2cf10f594 100644 --- a/scripts/unify-twilight-and-stable.sh +++ b/scripts/unify-twilight-and-stable.sh @@ -10,5 +10,5 @@ fi set -ex -$(dirname $0)/merge-to-branch.sh twilight -$(dirname $0)/merge-to-branch.sh stable +sh $(dirname $0)/merge-to-branch.sh twilight +sh $(dirname $0)/merge-to-branch.sh stable