Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

depset transitive expects sequence of depsets #441

Merged
merged 1 commit into from
Oct 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion k8s/object.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def _common_impl(ctx):
kubectl_tool = kubectl_tool_info.tool_path
if kubectl_tool_info.tool_target:
kubectl_tool = _runfiles(ctx, kubectl_tool_info.tool_target.files.to_list()[0])
extrafiles = depset(transitive = kubectl_tool_info.tool_target.files)
extrafiles = depset(transitive = [kubectl_tool_info.tool_target.files])

substitutions = {
"%{cluster}": cluster_arg,
Expand Down