mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Delete files in root directory
svn path=/nixpkgs/trunk/; revision=1301
This commit is contained in:
parent
ec899b9f2b
commit
778dab85be
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue