From 73bae093d302082e26f192ad6097f8d69cd16446 Mon Sep 17 00:00:00 2001 From: Lucas Chaim Date: Mon, 30 Sep 2024 22:23:15 -0300 Subject: [PATCH] fix: Properly coalesce missing CI outputs to empty list --- apps/ci.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ci.nix b/apps/ci.nix index 6808cfa..1a23f0a 100644 --- a/apps/ci.nix +++ b/apps/ci.nix @@ -66,7 +66,7 @@ | update column1 { where system == $system } | transpose --header-row --as-record } else $in - | if $output != all { get $output } else $in + | if $output != all { get --ignore-errors $output | default [] } else $in | { include: $in } | to json --raw }