blob: 6ed9af09e969bd1e464dc7afd41b81b76788bc9a [file] [log] [blame]
#!/bin/bash
APPNAME=android_compile_fe
set -x -e
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
${INSTALL} --mode=644 -T ./go/android_compile_fe/Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ${GOPATH}/bin/${APPNAME} ${ROOT}/usr/local/bin/${APPNAME}
${INSTALL_DIR} --mode=755 ${ROOT}/usr/local/share/${APPNAME}
${INSTALL} --mode=644 ./dist/* ${ROOT}/usr/local/share/${APPNAME}
}
source ../bash/docker_build.sh