From 76b8053b27b062b11f0c9b495050cc55606ac9dc Mon Sep 17 00:00:00 2001 From: pizzapim Date: Sun, 21 Jan 2024 02:39:41 +0100 Subject: [PATCH] fix unbound variable 'config' in resultYAML (#51) --- lib/upstreamables.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/upstreamables.nix b/lib/upstreamables.nix index f381126..2571245 100644 --- a/lib/upstreamables.nix +++ b/lib/upstreamables.nix @@ -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);