* tools/make-release

Only try to delete directories that exist (to reduce noise).

git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@1363 8cb11bc2-c004-0410-86c3-e597b4017df7
remotes/authz-dev
cmpilato 2006-05-19 15:37:56 +00:00
parent a9de320c0e
commit eedbe8b649
1 changed files with 5 additions and 1 deletions

View File

@ -54,7 +54,11 @@ for PLATFORM in unix windows; do
# and many files still contain comments refering to this location):
# Remove some not useful directories
rm -r ${TARGET}/{elemx,tests,tools,tparse,viewcvs.sourceforge.net,www}
for JUNK in elemx tests tools tparse viewcvs.sourceforge.net www; do
if [ -e ${JUNK} ]; then
rm -f ${JUNK}
fi
done
# Make sure permissions are reasonable:
find ${TARGET} -print | xargs chmod uoa+r