From a0475d891f511dbddd4289c28e8b7abcfa57c9eb Mon Sep 17 00:00:00 2001 From: paul Date: Fri, 1 Sep 2006 09:32:50 +0000 Subject: [PATCH] Removed the line that cleans the SVN directories, because if you do an (svn export) then the svn directories arent there. --- livesupport/bin/dist.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/livesupport/bin/dist.sh b/livesupport/bin/dist.sh index 610108cbd..d03dd2a30 100755 --- a/livesupport/bin/dist.sh +++ b/livesupport/bin/dist.sh @@ -24,7 +24,7 @@ # Author : $Author$ # Version : $Revision$ # Location : $URL$ -#------------------------------------------------------------------------------- +#------------------------------------------------------------------------------- #------------------------------------------------------------------------------- # This script creates a distribution tarball for livesupport. # Creates two tarballs: @@ -231,7 +231,8 @@ cp -pPR README INSTALL configure $ls_tmpdir #------------------------------------------------------------------------------- # Get rid of the remnants of the subversion system #------------------------------------------------------------------------------- -rm -rf `find $ls_tmpdir -name .svn -type d` +# Paul Baranowski: you dont need to do this when you export from SVN. +#rm -rf `find $ls_tmpdir -name .svn -type d` #-------------------------------------------------------------------------------