#!/bin/sh

if [ ! -z "$1" ] ; then
    xsltproc --stringparam location $1 changelocation.xsl universe
else
    echo "Usage: $(basename $0) <servlet-location>"
fi
