now allowing subdirectories in Doc/
authorhaftmann
Thu, 12 Oct 2006 08:25:04 +0200
changeset 20990 0c1296049b47
parent 20989 c04bbfe71cef
child 20991 bb6f570512b5
now allowing subdirectories in Doc/
Admin/makedist
--- a/Admin/makedist	Thu Oct 12 08:10:23 2006 +0200
+++ b/Admin/makedist	Thu Oct 12 08:25:04 2006 +0200
@@ -44,6 +44,7 @@
 
   Checklist for official releases (before running this script):
 
+    * Symlink website to Admin/website
     * Check Admin/website contents.
     * Check ANNOUNCE, README.html, INSTALL, NEWS, COPYRIGHT, CONTRIBUTORS.
     * Try "isatool makeall all" with Poly/ML, SML/NJ, etc.
@@ -136,10 +137,10 @@
 
 for DOC in $(cat Contents)
 do
-  cd "$DOC"
+  pushd "$DOC" > /dev/null
   make dvi || fail "DVI document for $DOC failed!"
   { [ -n "$PDFLATEX" ] && make clean pdf; } || fail "PDF document for $DOC failed!"
-  cd ..
+  popd
 done