mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +02:00
fix_files script must have been broken by svn:eol-style quite a while ago, now uses tr rather than sed to replace carriage returns
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10464 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -21,9 +21,9 @@ rm FILELIST.$$
|
|||||||
|
|
||||||
for i in $(cat FILELIST); do
|
for i in $(cat FILELIST); do
|
||||||
if [ -f $i ]; then
|
if [ -f $i ]; then
|
||||||
sed -e s/
|
cat $i | tr -d '\r' > $i.tmp
|
||||||
//g $i > $i.tmp
|
|
||||||
mv $i.tmp $i
|
mv $i.tmp $i
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
rm FILELIST
|
rm FILELIST
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user