]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t5583: fix shebang line
authorElijah Newren <newren@gmail.com>
Fri, 12 May 2023 15:09:16 +0000 (15:09 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 12 May 2023 17:02:18 +0000 (10:02 -0700)
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 <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5583-push-branches.sh

index 29a5c5601bda07e4b010ac54b63d913c45240b36..e7e1b6dab66fb31d065c4dc7611c824a7bc1bf5b 100755 (executable)
@@ -1,4 +1,4 @@
-#!bin/sh
+#!/bin/sh
 
 test_description='check the consisitency of behavior of --all and --branches'