blob: 534e1827d5270af2d3e909c19061022fbdbdd851 [file] [log] [blame]
#!/bin/bash
APPNAME=autoroll-fe
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 ./go/autoroll-fe/Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ${GOPATH}/bin/${APPNAME} ${ROOT}/usr/local/bin/${APPNAME}
${INSTALL_DIR} ${ROOT}/usr/local/share/${APPNAME}
cp -r ./dist ${ROOT}/usr/local/share/${APPNAME}/dist
chmod -R 777 ${ROOT}/usr/local/share/${APPNAME}/dist
}
source ../bash/docker_build.sh