You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2020/04/07 07:45:52 UTC

[incubator-heron] branch nicknezis/bazel-2 updated: Fix to nomad BUILD files

This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch nicknezis/bazel-2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/nicknezis/bazel-2 by this push:
     new b1c494a  Fix to nomad BUILD files
b1c494a is described below

commit b1c494a77c824a3758cf17b89f4da1b0cfe5ed69
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Tue Apr 7 03:45:37 2020 -0400

    Fix to nomad BUILD files
---
 third_party/nomad/BUILD       | 4 ++--
 third_party/nomad/nomad.BUILD | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/third_party/nomad/BUILD b/third_party/nomad/BUILD
index 367848e..e64f177 100644
--- a/third_party/nomad/BUILD
+++ b/third_party/nomad/BUILD
@@ -5,7 +5,7 @@ package(default_visibility = ["//visibility:public"])
 filegroup(
     name = "heron-nomad",
     srcs = select({
-        "//tools/platform:darwin": ["@nomad_mac//:nomad"],
-        "//conditions:default": ["@nomad_linux//:nomad"],
+        "//tools/platform:darwin": ["@nomad_mac//:nomad-bin"],
+        "//conditions:default": ["@nomad_linux//:nomad-bin"],
     }),
 )
diff --git a/third_party/nomad/nomad.BUILD b/third_party/nomad/nomad.BUILD
index 5ff9879..70f64b0 100644
--- a/third_party/nomad/nomad.BUILD
+++ b/third_party/nomad/nomad.BUILD
@@ -3,6 +3,6 @@ licenses(["notice"])
 package(default_visibility = ["//visibility:public"])
 
 filegroup(
-    name = "nomad",
+    name = "nomad-bin",
     srcs = ["nomad"],
 )