 b8686c661d
			
		
	
	b8686c661d
	
	
	
		
			
			It does not make sense for these placeholder scripts to depend on Python just because the real scripts do. At the example of Git for Windows, we would not even be able to see those warnings as it does not ship with Python. So just use plain shell scripts instead. Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			422 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			422 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| cat >&2 <<'EOT'
 | |
| WARNING: git-remote-bzr is now maintained independently.
 | |
| WARNING: For more information visit https://github.com/felipec/git-remote-bzr
 | |
| WARNING:
 | |
| WARNING: You can pick a directory on your $PATH and download it, e.g.:
 | |
| WARNING:   $ wget -O $HOME/bin/git-remote-bzr \
 | |
| WARNING:     https://raw.github.com/felipec/git-remote-bzr/master/git-remote-bzr
 | |
| WARNING:   $ chmod +x $HOME/bin/git-remote-bzr
 | |
| EOT
 |