aboutsummaryrefslogtreecommitdiff
path: root/src/nix-store
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix-store')
-rw-r--r--src/nix-store/nix-store.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index c1e6afef0..0aabe66c5 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -922,9 +922,7 @@ static void opServe(Strings opFlags, Strings opArgs)
case cmdExportPaths: {
readInt(in); // obsolete
- Paths sorted = store->topoSortPaths(readStorePaths<PathSet>(*store, in));
- reverse(sorted.begin(), sorted.end());
- store->exportPaths(sorted, out);
+ store->exportPaths(readStorePaths<Paths>(*store, in), out);
break;
}