Automated merge with file:///mnt/home/isabelle-repository/repos/isabelle
authorwenzelm
Tue, 02 Dec 2008 17:50:39 +0100
changeset 28946 08d9243bfaf1
parent 28945 da79ac67794b (current diff)
parent 28935 7c6b0850d240 (diff)
child 28947 ac1a14b5a085
Automated merge with file:///mnt/home/isabelle-repository/repos/isabelle
--- a/bin/isabelle	Tue Dec 02 14:29:12 2008 +0100
+++ b/bin/isabelle	Tue Dec 02 17:50:39 2008 +0100
@@ -1,6 +1,5 @@
 #!/usr/bin/env bash
 #
-# $Id$
 # Author: Markus Wenzel, TU Muenchen
 #
 # Isabelle tool wrapper.
@@ -34,14 +33,16 @@
     IFS=":"
     for DIR in $ISABELLE_TOOLS
     do
-      cd "$DIR"
-      for T in *
-      do
-        if [ -f "$T" -a -x "$T" ]; then
-          DESCRLINE=$(fgrep DESCRIPTION: "$T" | sed -e 's/^.*DESCRIPTION: *//')
-          echo "    $T - $DESCRLINE"
-        fi
-      done
+      if [ -d "$DIR" ]; then
+        cd "$DIR"
+        for T in *
+        do
+          if [ -f "$T" -a -x "$T" ]; then
+            DESCRLINE=$(fgrep DESCRIPTION: "$T" | sed -e 's/^.*DESCRIPTION: *//')
+            echo "    $T - $DESCRLINE"
+          fi
+        done
+      fi
     done
     IFS="$ORIG_IFS"
   )
--- a/bin/isabelle-process	Tue Dec 02 14:29:12 2008 +0100
+++ b/bin/isabelle-process	Tue Dec 02 17:50:39 2008 +0100
@@ -1,6 +1,5 @@
 #!/usr/bin/env bash
 #
-# $Id$
 # Author: Markus Wenzel, TU Muenchen
 #
 # Isabelle process startup script.