aboutsummaryrefslogtreecommitdiffstats
path: root/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD32
1 files changed, 16 insertions, 16 deletions
diff --git a/BUILD b/BUILD
index 79c5e3f385..3d9389afc4 100644
--- a/BUILD
+++ b/BUILD
@@ -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/$@ .",
+ ]),
)