Admin/init_components
author haftmann
Tue, 26 Jun 2012 22:23:28 +0200
changeset 48151 a80595d4f850
parent 48150 c97656ff4154
child 48152 f06697f776b0
permissions -rw-r--r--
correction: proper initialization of existing component

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

function init_component_liberal
{
  local LOCATION="$1"
  if [[ -d "${LOCATION}" ]]
  then
    init_component "${LOCATION}"
  else
    echo "Warning: no component found in ${LOCATION}"
  fi
}

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