Johannes Sixt <johannes.sixt@xxxxxxxxxx> wrote: > diff --git a/git-gui/git-gui.sh b/git-gui/git-gui.sh > index fd3875a..fa08d49 100755 > --- a/git-gui/git-gui.sh > +++ b/git-gui/git-gui.sh > @@ -52,7 +52,11 @@ catch {rename send {}} ; # What an evil concept... > set oguilib {@@GITGUI_LIBDIR@@} > set oguirel {@@GITGUI_RELATIVE@@} > if {$oguirel eq {1}} { > - set oguilib [file dirname [file dirname [file normalize $argv0]]] > + set oguilib [file dirname [file normalize $argv0]] > + if {[lindex [file split $oguilib] end] eq {git-core}} { > + set oguilib [file dirname $oguilib] Isn't that what [file tail] does? if {[file tail $oguilib] eq {git-core}} { But otherwise this looks good to me. I'll apply it later tonight, unless you agree that file tail is better here. -- Shawn. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html