File: deploy.sh

package info (click to toggle)
witty 3.1.2-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 45,512 kB
  • ctags: 35,832
  • sloc: cpp: 69,469; ansic: 66,945; xml: 4,383; sh: 594; perl: 108; makefile: 106
file content (9 lines) | stat: -rwxr-xr-x 301 bytes parent folder | download
1
2
3
4
5
6
7
8
9
echo "Installing example ${APPBIN} to ${DEPLOYROOT}/${APPNAME}/ ..."
mkdir -p ${DEPLOYROOT}/${APPNAME}
install ${APPBIN} ${DEPLOYROOT}/${APPNAME}
if [ "${APPRESOURCES}" ]; then
  cp -R ${APPRESOURCES} ${DEPLOYROOT}/${APPNAME}
fi
cp -R ${WT_SOURCE_DIR}/resources ${DEPLOYROOT}/${APPNAME}
echo "Done."