Opened 15 years ago
Closed 15 years ago
#1383 closed defect (bug) (fixed)
svn:eol-style native all bbPress plugin files
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 2.0 | Priority: | normal |
| Severity: | normal | Version: | |
| Component: | General - Administration | Keywords: | |
| Cc: | westi |
Description
This property should be set on all files!
find . \( -name "*.php" -print , -name "*.js" -print \) | xargs svn propset svn:eolstyle native
Will do it for you
Change History (6)
#2
@
15 years ago
Make that:
find . \( -name "*.php" -print , -name "*.js" -print \) | xargs svn propset svn:eol-style native
Missing '-' :-(
And yes CSS files too
#4
follow-up:
↓ 5
@
15 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
You need to apply this to all the new files JJJ! :)
#5
in reply to:
↑ 4
@
15 years ago
Replying to markmcwilliams:
You need to apply this to all the new files JJJ! :)
He needs to setup some svn autoprops then :-)
http://svnbook.red-bean.com/nightly/en/svn.advanced.props.html#svn.advanced.props.auto
Note: See
TracTickets for help on using
tickets.
Yay, that'll sort out my patching problems! :) Because we've got some .css files too, should a
-name "*.css" -printbe in there too, out of curiosity?