blob: ae1a840364534fce9adbdacce459c76e8477757c [file] [log] [blame]
#!/bin/bash
APPNAME=api
DOXYGEN_HTML=${DOXYGEN_HTML:-/workspace/__doxygen_staging/html}
set -x -e
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="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 ${DOXYGEN_HTML} && find . -type f -exec ${INSTALL} "{}" "${ROOT}/usr/local/share/${APPNAME}/docs/{}" \;)
}
source ../bash/docker_build.sh