Admin/init_components
author wenzelm
Mon, 23 Jul 2012 16:13:26 +0200
changeset 48448 94c11abc5a52
parent 48166 1bee47c0c278
child 48842 ac976e51cb67
permissions -rw-r--r--
clarified init_component: always liberal; reduced divergence of clone from lib/scripts/getsettings;

# -*- 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"