diff options
author | Nils Adermann <naderman@naderman.de> | 2010-03-05 22:22:39 +0100 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2010-03-05 22:22:39 +0100 |
commit | 2e1cd98a5a9145fb2d86e63bf178d6370c301602 (patch) | |
tree | 48a820f3d408e84273fb7b01b9b4f646cdbf9d0a /phpBB | |
parent | 39490abfff0f16c0bb79034c97bc744ae3a3a7c9 (diff) | |
download | forums-2e1cd98a5a9145fb2d86e63bf178d6370c301602.tar forums-2e1cd98a5a9145fb2d86e63bf178d6370c301602.tar.gz forums-2e1cd98a5a9145fb2d86e63bf178d6370c301602.tar.bz2 forums-2e1cd98a5a9145fb2d86e63bf178d6370c301602.tar.xz forums-2e1cd98a5a9145fb2d86e63bf178d6370c301602.zip |
exclude the image file with text in the name from having newlines fixed
Diffstat (limited to 'phpBB')
-rwxr-xr-x | phpBB/develop/fix_files.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/develop/fix_files.sh b/phpBB/develop/fix_files.sh index d2207289dc..bf58e49e5f 100755 --- a/phpBB/develop/fix_files.sh +++ b/phpBB/develop/fix_files.sh @@ -14,7 +14,7 @@ find . > FILELIST.$$ grep -sv FILELIST FILELIST.$$ > FILELIST2.$$ grep -sv $(basename $0) FILELIST2.$$ > FILELIST.$$ grep -sv "^\.$" FILELIST.$$ > FILELIST2.$$ -file -f FILELIST2.$$ |grep text | sed -e 's/^\([^\:]*\)\:.*$/\1/' > FILELIST +file -f FILELIST2.$$ |grep text | grep -v icon_textbox_search.gif | sed -e 's/^\([^\:]*\)\:.*$/\1/' > FILELIST file -f FILELIST2.$$ |grep -sv text | sed -e 's/^\([^\:]*\)\:.*$/Not Modifying file: \1/' rm FILELIST2.$$ rm FILELIST.$$ |