mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -x
 | 
						|
set -e
 | 
						|
 | 
						|
cd "$(mktemp -d)"
 | 
						|
distro=$(lsb_release -is)
 | 
						|
 | 
						|
git clone https://github.com/zulip/tsearch_extras
 | 
						|
if [ "$distro" = "Ubuntu" ] || [ "$distro" == "Debian" ]; then
 | 
						|
    make="make"
 | 
						|
else
 | 
						|
    make="gmake"
 | 
						|
fi
 | 
						|
(cd tsearch_extras && "$make" && "$make" install)
 |