Here is the issue.  I fixed it in on my build. 
 
In the load_bots.sql there are two lines that need to be corrected. 
 
197 DELIMTER \\ 
212 END \\ 
 
The problem is that you cannot use a backslash as a delimiter.  Change the \\  to $$ and rerun it.  You may need to run drop_bots first so you dont hit a bunch of duplicate errors. 
 
197 DELIMTER $$ 
212 END $$ 
		
	
		
		
		
		
		
		
		
		
		
	
		
		
	
	
	 |