changeset 2317:4fb5b10c0f10

Fix a nasty bug --- the cleanup production was nuking the generated tar file!
author Eric S. Raymond <esr@snark.thyrsus.com>
date Mon, 22 Mar 1993 19:23:41 +0000
parents 58b646d9fefc
children 50737ca2fd45
files make-dist
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/make-dist	Mon Mar 22 16:57:31 1993 +0000
+++ b/make-dist	Mon Mar 22 19:23:41 1993 +0000
@@ -286,7 +286,7 @@
 
 if [ "${clean_up}" = yes ]; then
   echo "Cleaning up the staging directory."
-  rm -rf ${tempparent}
+  rm -rf ${tempdir}
 fi
 
 ### make-dist ends here