blob: 9cc51cccacb01fbc3b33509c95d1350c2c4d6343 [file] [log] [blame]
#!/bin/bash
# repo-sync syncs a googlesource repo to a gcloud repo.
set -x -e
APPNAME=repo-sync
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="install -D --verbose"
${INSTALL} --mode=644 -T ${APPNAME}/Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ${GOPATH}/bin/${APPNAME} ${ROOT}/usr/local/bin/${APPNAME}
}
source ../bash/docker_build.sh