From: Johannes Sixt Date: Thu, 31 Jul 2025 17:20:22 +0000 (+0200) Subject: Merge branch 'ml/windows-tie-loose-ends' X-Git-Tag: v2.51.0-rc1~9^2~4 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=f91175ea646a97e6fff8c6ae75eaed41d591a416;p=thirdparty%2Fgit.git Merge branch 'ml/windows-tie-loose-ends' * ml/windows-tie-loose-ends: git-gui: use /cmd/git-gui.exe for shortcut git-gui: Windows tk_getSaveFile is not useful for shortcuts git-gui: let nice work on Windows git-gui: do not add directories to PATH on Windows Signed-off-by: Johannes Sixt --- f91175ea646a97e6fff8c6ae75eaed41d591a416 diff --cc git-gui.sh index 8bb121db4f,2b5b596400..d4b1d95d63 --- a/git-gui.sh +++ b/git-gui.sh @@@ -79,16 -81,12 +79,10 @@@ proc is_Cygwin {} if {[is_Windows]} { set _path_sep {;} - set _search_exe .exe } else { set _path_sep {:} - set _search_exe {} } - if {[is_Windows]} { - set gitguidir [file dirname [info script]] - regsub -all ";" $gitguidir "\\;" gitguidir - set env(PATH) "$gitguidir;$env(PATH)" - } - set _search_path {} set _path_seen [dict create] foreach p [split $env(PATH) $_path_sep] {