mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-31 01:39:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			131 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			131 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| set -e
 | |
| 
 | |
| if [ "$1" = 'v2ray' ]; then
 | |
|   if [ ! -e "server-cfg.json" ]; then
 | |
|       ./gen-server-cfg.sh
 | |
|   fi
 | |
| fi
 | |
| 
 | |
| exec "$@"
 | 
