diff --git a/src/nix/path-info.cc b/src/nix/path-info.cc index 11c47bc4..dea5f055 100644 --- a/src/nix/path-info.cc +++ b/src/nix/path-info.cc @@ -103,7 +103,10 @@ struct CmdPathInfo : StorePathsCommand, MixJSON auto info = store->queryPathInfo(storePath); storePath = info->path; // FIXME: screws up padding - std::cout << storePath << std::string(std::max(0, (int) pathLen - (int) storePath.size()), ' '); + std::cout << storePath; + + if (showSize || showClosureSize || showSigs) + std::cout << std::string(std::max(0, (int) pathLen - (int) storePath.size()), ' '); if (showSize) printSize(info->narSize);