Make sure to add a new line at the end of XML files

pull/5471/head
Hao Nguyen 6 years ago
parent 9349e23827
commit 4b02f652e0
  1. 2
      csharp/Google.Protobuf.Tools.nuspec
  2. 2
      csharp/src/Google.Protobuf/Google.Protobuf.csproj
  3. 2
      java/core/pom.xml
  4. 2
      java/pom.xml
  5. 2
      java/util/pom.xml
  6. 2
      protoc-artifacts/pom.xml
  7. 1
      update_version.py

@ -36,4 +36,4 @@
<file src="Google.Protobuf.Tools.targets" target="buildCrossTargeting"/>
<file src="Google.Protobuf.Tools.targets" target="build"/>
</files>
</package>
</package>

@ -33,4 +33,4 @@
<PackageReference Include="SourceLink.Create.CommandLine" PrivateAssets="All" Version="2.7.6"/>
</ItemGroup>
</Project>
</Project>

@ -154,4 +154,4 @@
</plugins>
</build>
</project>
</project>

@ -216,4 +216,4 @@
<module>util</module>
</modules>
</project>
</project>

@ -126,4 +126,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

@ -131,4 +131,4 @@
</build>
</profile>
</profiles>
</project>
</project>

@ -53,6 +53,7 @@ def RewriteXml(filename, rewriter, add_xml_prefix=True):
if add_xml_prefix:
file_handle.write('<?xml version="1.0" encoding="UTF-8"?>\n')
file_handle.write(content)
file_handle.write('\n')
file_handle.close()

Loading…
Cancel
Save