1
0
mirror of https://github.com/git/git.git synced 2024-09-28 17:22:20 +02:00

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 <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Elijah Newren 2023-05-12 15:09:16 +00:00 committed by Junio C Hamano
parent 425b4d7f47
commit 022fbb655d

@ -1,4 +1,4 @@
#!bin/sh
#!/bin/sh
test_description='check the consisitency of behavior of --all and --branches'