Upgraded Forge to 10.13.4.1558; added the Forge Installer to set up the basic server directory; added templates for certain server config files; set up makefile rules for building the server pack
		
			
				
	
	
		
			7 lines
		
	
	
		
			112 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			112 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
MEMSZ=2G
 | 
						|
PERMSZ=256m
 | 
						|
FORGEJAR=@FORGEJAR@
 | 
						|
 | 
						|
exec java -Xmx$MEMSZ -XX:MaxPermSize=$PERMSZ -jar $FORGEJAR
 |