From 092c82db7f62f931399b9ef22d96e2bad91de434 Mon Sep 17 00:00:00 2001 From: the_systech Date: Tue, 31 Jul 2001 20:38:20 +0000 Subject: [PATCH] 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 --- phpBB/develop/fix_files.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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.$$