fix unbound variable 'config' in resultYAML (#51)

This commit is contained in:
pizzapim 2024-01-21 02:39:41 +01:00 committed by GitHub
parent e4d0365764
commit 76b8053b27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@ with lib; let
pkgs.runCommand name { } pkgs.runCommand name { }
(concatMapStringsSep "\necho --- >> $out\n" (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); documents);