Skip to content
Snippets Groups Projects
install.sh 249 B
Newer Older
#!/bin/sh
set -e

INSTALL_DIR=$1

SCRIPT=$(readlink -f "$0")
SCRIPTPATH=$(dirname "$SCRIPT")     # path where this script is located in

cd ${SCRIPTPATH}/src/xml

python runTests.py
mkdir -p ${INSTALL_DIR}
al.schwinn's avatar
al.schwinn committed

cp -r ${SCRIPTPATH}/src/xml ${INSTALL_DIR}