mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 22:08:54 +00: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:
parent
edd57359c8
commit
926d0f980e
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue