Admin/init_components
author wenzelm
Wed, 29 Aug 2012 11:31:07 +0200
changeset 48991 0350245dec1c
parent 48842 ac976e51cb67
permissions -rw-r--r--
init components from local clone that is used to produce the test distribition, which itself lacks Admin;

# -*- shell-script -*- :mode=shellscript:
#
# Author: Florian Haftmann, TU Muenchen
#
# init_components - bash source script to initialize components
# as specified in the Admin directory

while { unset REPLY; read -r; test "$?" = 0 -o -n "$REPLY"; }
do
  case "$REPLY" in
    \#* | "") ;;
    /*) init_component "$REPLY" ;;
    *) init_component "$COMPONENT/$REPLY" ;;
  esac
done < "$ISABELLE_HOME/Admin/components_old"