Admin/mirror-dist
author berghofe
Fri, 11 Jul 2003 14:55:17 +0200
changeset 14102 8af7334af4b3
parent 13567 7f5bf04095bd
permissions -rwxr-xr-x
- Installed specific code generator for equality enforcing that arguments do not have function types, which would result in an error message during compilation. - Added test case generators for basic types.

#!/usr/bin/env bash
#
# $Id$
#
# Mirrors the Isabelle distribution pages and downloads. 
#
# It does *not* mirror the home page (those directly on 
# http://isabelle.in.tum.de). There is a separate utility 
# (mirror-main) for that.
#
# Usage: mirror-dist
#


HOST=$(hostname)

case ${HOST} in
  sunbroy*)
    #test
    DEST=/tmp/isabelle-dist
    mkdir -p $DEST
    ;;
  *.cl.cam.ac.uk)
    DEST=/anfs/www/html/Research/HVG/Isabelle/dist
    ;;
  *)
    echo "Unknown destination directory for ${HOST}"
    exit 2
    ;;
esac

exec $(dirname $0)/rsync-isabelle -d $DEST