11 lines
		
	
	
	
		
			123 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			123 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -x
 | 
						|
set -e
 | 
						|
 | 
						|
FULL_PATH=$(realpath $0)
 | 
						|
DIR_PATH=$(dirname $FULL_PATH)
 | 
						|
 | 
						|
$DIR_PATH/update
 | 
						|
 | 
						|
iex -S mix phx.server
 |