From db0a219c62349f332f9d57bf4343bf488dac0bf3 Mon Sep 17 00:00:00 2001 From: Konstantin Bogomolov Date: Wed, 20 Aug 2025 23:00:54 +0000 Subject: [PATCH] Fix //debian:debian build target. This is needed for releases. For some reason, prior to this CL `make debian` would succeed, despite the obvious failure in the logs, and the script using show_paths.bzl doing `set -euo`. --- tools/show_paths.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/show_paths.bzl b/tools/show_paths.bzl index f0126ac7b1..24334806c3 100644 --- a/tools/show_paths.bzl +++ b/tools/show_paths.bzl @@ -13,7 +13,7 @@ def format(target): if files_to_run and files_to_run.executable: outputs[files_to_run.executable.path] = True elif default_info: - for x in default_info.files: + for x in default_info.files.to_list(): outputs[x.path] = True elif output_group_info: for entry in dir(output_group_info):