Admin/init_components
author blanchet
Thu, 26 Jul 2012 11:08:16 +0200
changeset 49549 2307efbfc554
parent 49463 94c11abc5a52
child 49857 ac976e51cb67
permissions -rw-r--r--
Z3 prints so many warnings that the very informative abnormal termination exception hardly ever gets raised -- better be more aggressive here
     1 # -*- shell-script -*- :mode=shellscript:
     2 #
     3 # Author: Florian Haftmann, TU Muenchen
     4 #
     5 # init_components - bash source script to initialize components
     6 # as specified in the Admin directory
     7 
     8 while { unset REPLY; read -r; test "$?" = 0 -o -n "$REPLY"; }
     9 do
    10   case "$REPLY" in
    11     \#* | "") ;;
    12     /*) init_component "$REPLY" ;;
    13     *) init_component "$COMPONENT/$REPLY" ;;
    14   esac
    15 done < "$ISABELLE_HOME/Admin/components"