 731ab1f55e
			
		
	
	731ab1f55e
	
	
	
		
			
			* git://repo.or.cz/git-gui: git-gui (Windows): Change wrapper to execdir 'libexec/git-core' git-gui (Windows): Switch to relative discovery of oguilib git-gui: Correct installation of library to be $prefix/share git-gui: Fix gitk search in $PATH to work on Windows git-gui: Preserve scroll position on reshow_diff. git-gui: Fix the Remote menu separator.
		
			
				
	
	
		
			20 lines
		
	
	
		
			483 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			483 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| # Tcl ignores the next line -*- tcl -*- \
 | |
| exec wish "$0" -- "$@"
 | |
| 
 | |
| if { $argc >=2 && [lindex $argv 0] == "--working-dir" } {
 | |
| 	cd [lindex $argv 1]
 | |
| 	set argv [lrange $argv 2 end]
 | |
| 	incr argc -2
 | |
| }
 | |
| 
 | |
| set bindir [file dirname \
 | |
|             [file dirname \
 | |
|              [file dirname [info script]]]]
 | |
| set bindir [file join $bindir bin]
 | |
| regsub -all ";" $bindir "\\;" bindir
 | |
| set env(PATH) "$bindir;$env(PATH)"
 | |
| unset bindir
 | |
| 
 | |
| source [file join [file dirname [info script]] git-gui.tcl]
 |