1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-31 13:48:04 +01:00

Fixed so that it won't touch files in the "images" directories.

git-svn-id: file:///svn/phpbb/trunk@772 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
the_systech 2001-07-31 20:38:20 +00:00
parent 5fbf899714
commit 092c82db7f

View File

@ -4,11 +4,15 @@
# from all files in the current directory and all subdirectories.
#
# Written by: Jonathan Haase.
#
# UPDATE: 7/31/2001: fix so that it doesn't touch things in the images directory
#
find . > FILELIST.$$
grep -sv FILELIST FILELIST.$$ > FILELIST2.$$
grep -sv $(basename $0) FILELIST2.$$ > FILELIST.$$
grep -sv "^\.$" FILELIST.$$ > FILELIST
grep -sv "^\.$" FILELIST.$$ > FILELIST2.$$
grep -sv "images" FILELIST2.$$ > FILELIST
rm FILELIST2.$$
rm FILELIST.$$