git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [StGIT PATCH] diffcol.sh: Use /bin/bash explicitly
@ 2008-09-03 15:47 Shinya Kuribayashi
  2008-09-03 16:21 ` Karl Hasselström
  0 siblings, 1 reply; 3+ messages in thread
From: Shinya Kuribayashi @ 2008-09-03 15:47 UTC (permalink / raw)
  To: catalin.marinas, kha; +Cc: git

Recent Ubuntu uses dash (Debian Almquist Shell; a lightweight POSIX-
compliant shell derived from ash) as /bin/sh by default.  In this case
pager=diffcol.sh doesn't work like this:

> skuribay@ubuntu:~/kernel/linux.git$ stg show
> /home/skuribay/share/stgit/contrib/diffcol.sh: 22: Bad substitution

this is caused by non-bash-compliant /bin/sh.

diffcol.sh is based on Quilt, and Quilt is dependent on bash; Actually
all Quilt scripts use /bin/bash without exceptions.  Then it's good for
diffcol.sh to use /bin/bash.

Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
---
 contrib/diffcol.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/contrib/diffcol.sh b/contrib/diffcol.sh
index ea9109d..eecc87a 100755
--- a/contrib/diffcol.sh
+++ b/contrib/diffcol.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 # Code copied from Quilt (http://savannah.nongnu.org/projects/quilt)
 #

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

* Re: [StGIT PATCH] diffcol.sh: Use /bin/bash explicitly
  2008-09-03 15:47 [StGIT PATCH] diffcol.sh: Use /bin/bash explicitly Shinya Kuribayashi
@ 2008-09-03 16:21 ` Karl Hasselström
  2008-09-05 21:35   ` Catalin Marinas
  0 siblings, 1 reply; 3+ messages in thread
From: Karl Hasselström @ 2008-09-03 16:21 UTC (permalink / raw)
  To: Shinya Kuribayashi; +Cc: catalin.marinas, git

On 2008-09-04 00:47:17 +0900, Shinya Kuribayashi wrote:

> diffcol.sh is based on Quilt, and Quilt is dependent on bash;
> Actually all Quilt scripts use /bin/bash without exceptions. Then
> it's good for diffcol.sh to use /bin/bash.

Thanks for this, and the other patch you sent. I'll be picking them up
this weekend, unless Catalin beats me to it.

-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle

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

* Re: [StGIT PATCH] diffcol.sh: Use /bin/bash explicitly
  2008-09-03 16:21 ` Karl Hasselström
@ 2008-09-05 21:35   ` Catalin Marinas
  0 siblings, 0 replies; 3+ messages in thread
From: Catalin Marinas @ 2008-09-05 21:35 UTC (permalink / raw)
  To: Karl Hasselström; +Cc: Shinya Kuribayashi, git

2008/9/3 Karl Hasselström <kha@treskal.com>:
> On 2008-09-04 00:47:17 +0900, Shinya Kuribayashi wrote:
>
>> diffcol.sh is based on Quilt, and Quilt is dependent on bash;
>> Actually all Quilt scripts use /bin/bash without exceptions. Then
>> it's good for diffcol.sh to use /bin/bash.
>
> Thanks for this, and the other patch you sent. I'll be picking them up
> this weekend, unless Catalin beats me to it.

BTW, I think at some point we could change to using Git's native
colouring. The diffcol.sh script is from the days when Git didn't have
this feature. We currently generate a diff string and pass it through
the pager but I'm not sure how to do this.

-- 
Catalin

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

end of thread, other threads:[~2008-09-05 21:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-03 15:47 [StGIT PATCH] diffcol.sh: Use /bin/bash explicitly Shinya Kuribayashi
2008-09-03 16:21 ` Karl Hasselström
2008-09-05 21:35   ` Catalin Marinas

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).