diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2017-01-20 13:03:03 +0900 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2017-01-22 22:34:11 +0100 |
commit | dd5e500a57fce994331dd9c9a03cb9577998a4a8 (patch) | |
tree | 1f07d1b39663678832002f7e3965b0a96c3a5ed8 /BUILD | |
parent | 131b09106f76cdfca1d7292f2cc39a35834c7a67 (diff) | |
download | jgit-dd5e500a57fce994331dd9c9a03cb9577998a4a8.tar.gz jgit-dd5e500a57fce994331dd9c9a03cb9577998a4a8.zip |
Format Bazel files with buildifier
Change-Id: I934114315d2c7cab917f1011b8e55c52367d429f
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD | 32 |
1 files changed, 16 insertions, 16 deletions
@@ -1,19 +1,19 @@ -package(default_visibility = ['//visibility:public']) +package(default_visibility = ["//visibility:public"]) genrule( - name = 'all', - srcs = [ - '//org.eclipse.jgit:jgit', - '//org.eclipse.jgit.archive:jgit-archive', - '//org.eclipse.jgit.http.server:jgit-servlet', - '//org.eclipse.jgit.junit:junit', - ], - cmd = ' && '.join([ - 'p=$$PWD', - 't=$$(mktemp -d || mktemp -d -t bazel-tmp)', - 'cp $(SRCS) $$t', - 'cd $$t', - 'zip -qr $$p/$@ .', - ]), - outs = ['all.zip'], + name = "all", + srcs = [ + "//org.eclipse.jgit:jgit", + "//org.eclipse.jgit.archive:jgit-archive", + "//org.eclipse.jgit.http.server:jgit-servlet", + "//org.eclipse.jgit.junit:junit", + ], + outs = ["all.zip"], + cmd = " && ".join([ + "p=$$PWD", + "t=$$(mktemp -d || mktemp -d -t bazel-tmp)", + "cp $(SRCS) $$t", + "cd $$t", + "zip -qr $$p/$@ .", + ]), ) |