This commit is contained in:
Eelco Dolstra 2020-04-16 19:01:49 +02:00
parent c277231b7d
commit 29043e7e9e

View file

@ -156,7 +156,7 @@ struct CmdFlakeInfo : FlakeCommand, MixJSON
if (json) {
auto json = flakeToJson(*store, flake);
logger->stdout(json.dump());
logger->stdout("%s", json.dump());
} else
printFlakeInfo(*store, flake);
}
@ -174,7 +174,7 @@ struct CmdFlakeListInputs : FlakeCommand, MixJSON
auto flake = lockFlake();
if (json)
logger->stdout(flake.lockFile.toJson());
logger->stdout("%s", flake.lockFile.toJson());
else {
logger->stdout("%s", flake.flake.lockedRef);