create-kitbuild-dir at [ee0059a1c6]

File build/test/create-kitbuild-dir artifact 87409f27aa part of check-in ee0059a1c6


#! /bin/bash

WEBROOTDIR="/web/rkeene/devel/kitcreator/kitbuild"
export WEBROOTDIR

rm -rf "${WEBROOTDIR}/tests"

mkdir -p "${WEBROOTDIR}" || exit 1
mkdir -p "${WEBROOTDIR}/tests" || exit 1

cp index.ttml "${WEBROOTDIR}/"
cp tests/* "${WEBROOTDIR}/tests/"

ln -s ../../index.ttml "${WEBROOTDIR}/tests/"

exit 0