mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	In tools/build-docs line 3: cd "$(dirname "$0")"/../docs ^-- SC2164: Use 'cd ... || exit' or 'cd ... || return' in case cd fails. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
		
			
				
	
	
		
			7 lines
		
	
	
		
			82 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			82 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -eu
 | 
						|
 | 
						|
cd "$(dirname "$0")"/../docs
 | 
						|
rm -rf _build
 | 
						|
make html
 |