Closed
Bug 1794697
Opened 3 years ago
Closed 3 years ago
./mach esmify rewrites some files with Windows style line endings.
Categories
(Core :: XPConnect, defect)
Tracking
()
RESOLVED
FIXED
108 Branch
Tracking | Status | |
---|---|---|
firefox108 | --- | fixed |
People
(Reporter: nrishel, Assigned: saschanaz)
References
Details
Attachments
(1 file)
Some files seem to be rewritten with Windows style line endings when using ./mach esmify
. Example - see files where all lines are diffed.
This may not warrant investigation since esmify should be a short lived tool, but wanted to put it on the record in case it's a trivial fix.
Assignee | ||
Comment 1•3 years ago
|
||
(Let's follow the component of the parent bug)
Component: General → XPConnect
Assignee | ||
Comment 2•3 years ago
|
||
Python's write('w')
by default uses system default line ending which is \r\n
in Windows. newline=\n
helps us to keep using \n
everywhere.
Updated•3 years ago
|
Assignee: nobody → krosylight
Status: NEW → ASSIGNED
Pushed by krosylight@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/5c591d2d21ae
Pass newline=\n when esmifying r=arai DONTBUILD
Comment 4•3 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 3 years ago
status-firefox108:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 108 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•