mirror of https://github.com/docker/docs.git
				
				
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			383 B
		
	
	
	
		
			Bash
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			383 B
		
	
	
	
		
			Bash
		
	
	
	
| #!/bin/bash
 | |
| set -e
 | |
| 
 | |
| DEST=$1
 | |
| INIT=$DEST/../dynbinary/dockerinit-$VERSION
 | |
| 
 | |
| if [ ! -x "$INIT" ]; then
 | |
| 	echo >&2 'error: dynbinary must be run before dyntest-integration'
 | |
| 	false
 | |
| fi
 | |
| 
 | |
| (
 | |
| 	export TEST_DOCKERINIT_PATH="$INIT"
 | |
| 	export LDFLAGS_STATIC_DOCKER="
 | |
| 		-X github.com/dotcloud/docker/dockerversion.INITSHA1 \"$DOCKER_INITSHA1\"
 | |
| 	"
 | |
| 	source "$(dirname "$BASH_SOURCE")/test-integration"
 | |
| )
 |