Merge "Handle extra spaces in merge-svc-map-files"

This commit is contained in:
Jenkins 2014-10-24 07:42:02 +00:00 committed by Gerrit Code Review
commit 9d252ba318

View File

@ -48,6 +48,8 @@ def main():
element_paths = os.environ.get("ELEMENTS_PATH").split(':')
service_names = dict()
for element in elements:
if not element.strip():
continue
for element_path in element_paths:
data_path = os.path.join(element_path, element, "svc-map")
if os.path.exists(data_path):