From: Heiko Voigt Date: Sun, 7 Feb 2010 21:47:56 +0000 (+0100) Subject: git-gui: check whether systems nice command works or disable it X-Git-Tag: v1.7.2.2~29^2^2~10^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9c898a18ea37aa04a84c3a2d18794cf892862702;p=git.git git-gui: check whether systems nice command works or disable it This fixes issue 394 from msysgit. It seems that the Gnuwin32 project provides a nice command but it returns a "not implemented" error. To help users we now try to execute once and disable it in case it fails. Signed-off-by: Heiko Voigt Signed-off-by: Shawn O. Pearce --- diff --git a/git-gui.sh b/git-gui.sh index 85fbc021f..549f59ba7 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -388,6 +388,9 @@ proc _lappend_nice {cmd_var} { if {![info exists _nice]} { set _nice [_which nice] + if {[catch {exec $_nice git version}]} { + set _nice {} + } } if {$_nice ne {}} { lappend cmd $_nice