Skip to content

Commit

Permalink
t5583: fix shebang line
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
newren authored and gitster committed May 12, 2023
1 parent 425b4d7 commit 022fbb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/t5583-push-branches.sh
@@ -1,4 +1,4 @@
#!bin/sh
#!/bin/sh

test_description='check the consisitency of behavior of --all and --branches'

Expand Down

0 comments on commit 022fbb6

Please sign in to comment.