Delete files in root directory
svn path=/nixpkgs/trunk/; revision=1301
This commit is contained in:
parent
ec899b9f2b
commit
778dab85be
@ -19,3 +19,11 @@ yes yes | ./$src || exit 1
|
|||||||
|
|
||||||
mkdir $out || exit 1
|
mkdir $out || exit 1
|
||||||
mv $dirname/* $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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user