github.com/zhouyu0/docker-note@v0.0.0-20190722021225-b8d3825084db/hack/make/containerutility (about)

     1  #!/usr/bin/env bash
     2  set -e
     3  
     4  CONTAINER_UTILITY_COMMIT=e004a1415a433447369e315b9d7df357102be0d2 # v0.9.0
     5  
     6  (
     7  	git clone https://github.com/docker/windows-container-utility.git "$GOPATH/src/github.com/docker/windows-container-utility"
     8  	cd "$GOPATH/src/github.com/docker/windows-container-utility"
     9  	git checkout -q "$CONTAINER_UTILITY_COMMIT"
    10  
    11  	echo Building: ${DEST}/containerutility.exe
    12  
    13  	(
    14  		make
    15  	)
    16  
    17  	mkdir -p ${ABS_DEST}
    18  
    19  	cp containerutility.exe ${ABS_DEST}/containerutility.exe
    20  )