#!/bin/sh
#
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, make this file executable by "chmod +x post-update".

# Update the checkout and run the tests.
output="$(bash -c 'cd /mit/bazki/Checkout/ && git pull 2>&1')"

if [ "$?" -ne 0 ] ; then
    echo "$output" >&2
#else
#    ssh bazki@scripts.mit.edu /mit/bazki/Checkout/lib/htmltests.py > /mit/bazki/web_scripts/static/tests.html
fi

#git-update-server-info
