Merge pull request 'lib.readFact: fix argument order' (#1723) from Mic92-debug-facts into main

This commit is contained in:
clan-bot
2024-07-09 13:28:22 +00:00

View File

@@ -9,7 +9,7 @@ let
readFact = readFact =
machine: fact: machine: fact:
let let
path = getFactPath fact machine; path = getFactPath machine fact;
in in
if builtins.pathExists path then builtins.readFile path else null; if builtins.pathExists path then builtins.readFile path else null;