From 2e23cac3e3d4e4c681916bbb6a1a85ce34c9d85a Mon Sep 17 00:00:00 2001 From: Sanjeev Kulkarni Date: Thu, 26 Oct 2017 18:36:52 -0700 Subject: [PATCH] Fix the correct python package for building heronpy (#2493) --- scripts/packages/BUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/packages/BUILD b/scripts/packages/BUILD index bc0e91eee0e..ae034af0736 100644 --- a/scripts/packages/BUILD +++ b/scripts/packages/BUILD @@ -384,7 +384,7 @@ genrule( stamp = 1, tools = [ "//heronpy/api:heron-python-package", - "//heronpy/streamlet:heron-streamlet-api-package", + "//heronpy/streamlet:heron-python-streamlet-api-package", "//heronpy/connectors:heron-pythonconnectors-package", "//heronpy/proto:proto-py-package", ], @@ -405,7 +405,7 @@ genrule( 'echo $$HERON_VERSION', 'mkdir -p $$TMP_DIR $$HERONPY_DIR', 'unzip -qd $$HERONPYAPI_UNZIP $(location //heronpy/api:heron-python-package)', - 'unzip -qd $$HERONPYSTREAMLET_UNZIP $(location //heronpy/streamlet:heron-streamlet-api-package)', + 'unzip -qd $$HERONPYSTREAMLET_UNZIP $(location //heronpy/streamlet:heron-python-streamlet-api-package)', 'unzip -qd $$HERONPYCONNECTORS_UNZIP $(location //heronpy/connectors:heron-pythonconnectors-package)', 'unzip -qd $$HERONPYPROTO_UNZIP $(location //heronpy/proto:proto-py-package)', 'find $$HERONPYAPI_UNZIP -name "*.pyc" -exec rm {} \;',