commit | 0e2d37ee9e8e8b559a747b2b4f1fcebaa42cf3d8 | [log] [tgz] |
---|---|---|
author | Davide Scano <d.scano89@gmail.com> | Sun May 17 12:54:49 2020 +0200 |
committer | Pier Luigi Ventre <pier@opennetworking.org> | Thu May 21 13:34:41 2020 +0000 |
tree | 6f9ae5d300f8a130222d8e4af4dd51157fe18f5a | |
parent | f80feb3c4957a8a36caa3d6f10ddb145aaec753a [diff] [blame] |
Change publish_catalog Change-Id: Icaaee4402eefb8c65a17aab862008a8e0fd06ffe I makes the target.files iterable, this change solve the issue presented here https://groups.google.com/a/onosproject.org/forum/?utm_medium=email&utm_source=footer#!msg/onos-dev/KUH_S_JUYU8/lsb0QQO4AQAJ
diff --git a/tools/build/bazel/publish_catalog.bzl b/tools/build/bazel/publish_catalog.bzl index edf9569..199d67e 100644 --- a/tools/build/bazel/publish_catalog.bzl +++ b/tools/build/bazel/publish_catalog.bzl
@@ -33,7 +33,7 @@ packaging = classifier classifier = None - for f in target.files: + for f in target.files.to_list(): print("%s\t%s" % (f.path, _remote(group_id, artifact_id, version, packaging, classifier))) return []