github.com/jwhonce/docker@v0.6.7-0.20190327063223-da823cf3a5a3/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 )