git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] contrib/git-subtree: Use /bin/sh interpreter instead of /bin/bash
@ 2013-05-20 20:24 Dmitry Marakasov
  2013-05-20 22:36 ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Dmitry Marakasov @ 2013-05-20 20:24 UTC (permalink / raw)
  To: git

Use /bin/sh interpreter instead of /bin/bash for contrib/git-subtree:
it's required for systems which don't use bash by default (for example,
FreeBSD), while there seem to be no bashisms in the script (confirmed
by looking through the source and tesing subtree functionality with
FreeBSD's /bin/sh) to require specifically bash and not the generic
posix shell.

Signed-off-by: Dmitry Marakasov <amdmi3@amdmi3.ru>
---
 contrib/subtree/git-subtree.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/subtree/git-subtree.sh b/contrib/subtree/git-subtree.sh
index 8a23f58..5701376 100755
--- a/contrib/subtree/git-subtree.sh
+++ b/contrib/subtree/git-subtree.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #
 # git-subtree.sh: split/join git repositories in subdirectories of this one
 #
-- 
1.8.2.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-05-21  7:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-20 20:24 [PATCH] contrib/git-subtree: Use /bin/sh interpreter instead of /bin/bash Dmitry Marakasov
2013-05-20 22:36 ` Junio C Hamano
2013-05-21  7:55   ` John Keeping

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).