12 lines
		
	
	
		
			259 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			259 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| set -e
 | |
| set -x
 | |
| set -o pipefail
 | |
| 
 | |
| CROSS_DIR="$1"
 | |
| cd "$CROSS_DIR"
 | |
| export TARGET=.
 | |
| curl --silent --location \
 | |
|      https://raw.githubusercontent.com/houseabsolute/ubi/master/bootstrap/bootstrap-ubi.sh |
 | |
|     sh
 | |
| ./ubi --project cross-rs/cross --matching musl --in .
 |