1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 14:51:16 +02:00

Fix missing format argument

This commit is contained in:
Eelco Dolstra 2025-01-23 16:21:30 +01:00
parent 261b213272
commit 9060d0fe46

View file

@ -103,7 +103,7 @@ public:
throw e; throw e;
} }
if (lockFlags.inputUpdates.contains(inputPath)) if (lockFlags.inputUpdates.contains(inputPath))
warn("Input '%s' was specified multiple times. You may have done this by accident."); warn("Input '%s' was specified multiple times. You may have done this by accident.", printInputPath(inputPath));
lockFlags.inputUpdates.insert(inputPath); lockFlags.inputUpdates.insert(inputPath);
} }
}}, }},