mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-30 19:43:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			211 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			211 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash -e
 | |
| 
 | |
| # Wrapper for node which finds the right binary.
 | |
| 
 | |
| if which nodejs >/dev/null 2>&1; then
 | |
|     # Name used by Debian etc.
 | |
|     exec nodejs "$@"
 | |
| else
 | |
|     # Name used by upstream
 | |
|     exec node "$@"
 | |
| fi
 |