Skip to content

Commit

Permalink
fix: Properly coalesce missing CI outputs to empty list
Browse files Browse the repository at this point in the history
  • Loading branch information
lpchaim committed Oct 1, 2024
1 parent b13d4ac commit 73bae09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ci.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 73bae09

Please sign in to comment.