diff mbox series

t5583: fix shebang line

Message ID pull.1532.git.1683904156670.gitgitgadget@gmail.com (mailing list archive)
State Accepted
Commit 022fbb655d371db6382415bcfba5cdf741afeb41
Headers show
Series t5583: fix shebang line | expand

Commit Message

Elijah Newren May 12, 2023, 3:09 p.m. UTC
From: Elijah Newren <newren@gmail.com>

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>
---
    t5583: fix shebang line
    
    Applies on the top of tl/push-branches-is-an-alias-for-all.
    
    Noticed yesterday when testing my header cleanups against next & seen.

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1532%2Fnewren%2Ffix-tl-push-branches-is-an-alias-for-all-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1532/newren/fix-tl-push-branches-is-an-alias-for-all-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/1532

 t/t5583-push-branches.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: 425b4d7f47bd2be561ced14eac36056390862e8c
diff mbox series

Patch

diff --git a/t/t5583-push-branches.sh b/t/t5583-push-branches.sh
index 29a5c5601bd..e7e1b6dab66 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'