diff options
Diffstat (limited to 'phpBB/develop')
| -rwxr-xr-x | phpBB/develop/fix_files.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/develop/fix_files.sh b/phpBB/develop/fix_files.sh index 19b04d0b93..f38c5ef5bd 100755 --- a/phpBB/develop/fix_files.sh +++ b/phpBB/develop/fix_files.sh @@ -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.$$ |
