mirror of
				https://github.com/wting/autojump
				synced 2025-06-13 12:54:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			371 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			371 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# arg 1:  the new package version
 | 
						|
post_install() {
 | 
						|
  echo " > You need to source /etc/profile in your ~/.bashrc for this to work"
 | 
						|
  echo " > Only guaranteed to work with bash"
 | 
						|
  echo " > man autojump for instructions."
 | 
						|
  /bin/true
 | 
						|
}
 | 
						|
 | 
						|
# arg 1:  the new package version
 | 
						|
# arg 2:  the old package version
 | 
						|
post_upgrade() {
 | 
						|
  post_install $1
 | 
						|
  /bin/true
 | 
						|
}
 | 
						|
 | 
						|
op=$1
 | 
						|
shift
 | 
						|
$op $*
 |