aboutsummaryrefslogtreecommitdiffhomepage
path: root/protobuf.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'protobuf.bzl')
-rw-r--r--protobuf.bzl6
1 files changed, 3 insertions, 3 deletions
diff --git a/protobuf.bzl b/protobuf.bzl
index 2199caf1..0e2d44f7 100644
--- a/protobuf.bzl
+++ b/protobuf.bzl
@@ -180,9 +180,9 @@ def internal_copied_filegroup(
name=name+"_genrule",
srcs=srcs,
outs=outs,
- cmd=";".join(["cp $(location %s) $(location %s)" % \
- (s, _RelativeOutputPath(s, include)) \
- for s in srcs]))
+ cmd=" && ".join(["cp $(location %s) $(location %s)" %
+ (s, _RelativeOutputPath(s, include))
+ for s in srcs]))
native.filegroup(
name=name,