echo checkout command

This commit is contained in:
Michael Hoennig 2024-09-26 14:09:44 +02:00
parent e7558cdbe8
commit 086fb11436

View File

@ -11,6 +11,7 @@ while true; do
if [ -n "$branch_with_new_commits" ]; then if [ -n "$branch_with_new_commits" ]; then
echo "checking out branch: $branch_with_new_commits" echo "checking out branch: $branch_with_new_commits"
echo "git checkout -b \"$branch_with_new_commits\" \"origin/$branch_with_new_commits\""
git checkout -b "$branch_with_new_commits" "origin/$branch_with_new_commits" git checkout -b "$branch_with_new_commits" "origin/$branch_with_new_commits"
echo "building ..." echo "building ..."