Delete files in root directory

svn path=/nixpkgs/trunk/; revision=1301
This commit is contained in:
Martin Bravenboer 2004-08-20 11:08:08 +00:00
parent ec899b9f2b
commit 778dab85be

View file

@ -19,3 +19,11 @@ yes yes | ./$src || exit 1
mkdir $out || exit 1
mv $dirname/* $out/ || exit 1
# remove crap in the root directory
for file in $out/*
do
if test -f $file ; then
rm $file
fi
done