Skip to content

Commit

Permalink
fix unbound variable 'config' in resultYAML (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzapim authored Jan 21, 2024
1 parent e4d0365 commit 76b8053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/upstreamables.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ with lib; let
pkgs.runCommand name { }
(concatMapStringsSep "\necho --- >> $out\n"
(
d: "${pkgs.yq}/bin/yq -y . ${pkgs.writeText "to-json" (builtins.toJSON config)} >> $out"
d: "${pkgs.yq}/bin/yq -y . ${pkgs.writeText "to-json" (builtins.toJSON d)} >> $out"
)
documents);

Expand Down

0 comments on commit 76b8053

Please sign in to comment.