aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorthe_systech <the_systech@users.sourceforge.net>2001-07-31 20:38:20 +0000
committerthe_systech <the_systech@users.sourceforge.net>2001-07-31 20:38:20 +0000
commit092c82db7f62f931399b9ef22d96e2bad91de434 (patch)
tree6ea2bed1305858f6c26821c61b92a3c41d569654 /phpBB
parent5fbf8997145c0d2bf53f8329756483f7dfdf3605 (diff)
downloadforums-092c82db7f62f931399b9ef22d96e2bad91de434.tar
forums-092c82db7f62f931399b9ef22d96e2bad91de434.tar.gz
forums-092c82db7f62f931399b9ef22d96e2bad91de434.tar.bz2
forums-092c82db7f62f931399b9ef22d96e2bad91de434.tar.xz
forums-092c82db7f62f931399b9ef22d96e2bad91de434.zip
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
Diffstat (limited to 'phpBB')
-rwxr-xr-xphpBB/develop/fix_files.sh6
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.$$