mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-04-06 01:18:23 +02:00
Summary: A minor bug in the parser prevented it from handling git diffs where an empty file appears at the end of the diff. Since git appends an extra newline, we failed to jump into the '$line === null' block. Test Plan: Ran unit tests. Generated a revision which only deleted an empty file. Reviewers: jungejason, nh, tuomaspelkonen, aran Reviewed By: nh CC: aran, nh, epriestley Differential Revision: 998
6 lines
144 B
Text
6 lines
144 B
Text
diff --git a/empty b/empty
|
|
new file mode 100644
|
|
index 0000000..e69de29
|
|
diff --git a/empty2 b/empty2
|
|
new file mode 100644
|
|
index 0000000..e69de29
|