summaryrefslogtreecommitdiffstats
path: root/t/t5583-push-branches.sh
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2023-05-12 17:09:16 +0200
committerJunio C Hamano <gitster@pobox.com>2023-05-12 19:02:18 +0200
commit022fbb655d371db6382415bcfba5cdf741afeb41 (patch)
treed1daa21e8844651d92ed176bfde1b55a2dcb918e /t/t5583-push-branches.sh
parentpush: introduce '--branches' option (diff)
downloadgit-022fbb655d371db6382415bcfba5cdf741afeb41.tar.xz
git-022fbb655d371db6382415bcfba5cdf741afeb41.zip
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>
Diffstat (limited to 't/t5583-push-branches.sh')
-rwxr-xr-xt/t5583-push-branches.sh2
1 files changed, 1 insertions, 1 deletions
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'