blob: b9fdedaa57e3a7ee8b006ae82c5d9d138604eeaf [file] [log] [blame]
#!/bin/bash
APPNAME=skottie
set -x -e
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="install -D --verbose --backup=none"
INSTALL_DIR="install -d --verbose --backup=none"
${INSTALL} --mode=644 -T ${APPNAME}/Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ${GOPATH}/bin/${APPNAME} ${ROOT}/usr/local/bin/${APPNAME}
(cd ./dist/ && find . -type f -exec ${INSTALL} "{}" "${ROOT}/usr/local/share/${APPNAME}/{}" \;)
}
source ../bash/docker_build.sh