Skip to content

Commit

Permalink
Remove stray newline from generated BUILD files
Browse files Browse the repository at this point in the history
Closes #15054.

PiperOrigin-RevId: 4347925
  • Loading branch information
sf-jbazuzi authored and pull[bot] committed Aug 31, 2023
1 parent 4d9c2f8 commit 3407856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/build_defs/repo/http.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def _http_archive_impl(ctx):
sha256_override = {} if ctx.attr.integrity else {"sha256": download_info.sha256}
return update_attrs(ctx.attr, _http_archive_attrs.keys(), sha256_override)

_HTTP_FILE_BUILD = """
_HTTP_FILE_BUILD = """\
package(default_visibility = ["//visibility:public"])
filegroup(
Expand Down Expand Up @@ -152,7 +152,7 @@ def _http_file_impl(ctx):

return update_attrs(ctx.attr, _http_file_attrs.keys(), {"sha256": download_info.sha256})

_HTTP_JAR_BUILD = """
_HTTP_JAR_BUILD = """\
load("@rules_java//java:defs.bzl", "java_import")
package(default_visibility = ["//visibility:public"])
Expand Down

0 comments on commit 3407856

Please sign in to comment.