From: Elijah Newren Date: Fri, 12 May 2023 15:09:16 +0000 (+0000) Subject: t5583: fix shebang line X-Git-Tag: v2.41.0-rc0~8^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=022fbb655d371db6382415bcfba5cdf741afeb41;p=thirdparty%2Fgit.git t5583: fix shebang line The shebang was missing the leading `/` character, resulting in: $ ./t5583-push-branches.sh bash: ./t5583-push-branches.sh: cannot execute: required file not found Add the missing character so the test can run. Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- diff --git a/t/t5583-push-branches.sh b/t/t5583-push-branches.sh index 29a5c5601b..e7e1b6dab6 100755 --- a/t/t5583-push-branches.sh +++ b/t/t5583-push-branches.sh @@ -1,4 +1,4 @@ -#!bin/sh +#!/bin/sh test_description='check the consisitency of behavior of --all and --branches'