aboutsummaryrefslogtreecommitdiff
path: root/src/nix-store
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2020-04-30 17:56:26 -0600
committerBen Burdette <bburdette@gmail.com>2020-04-30 17:56:26 -0600
commita3030e3c3186f980716c475155c387bf18041a3f (patch)
tree19e66ca30804285dd8c6553d6f1ce9216e417f42 /src/nix-store
parentf5d3215c8740feec8053a697eca04c12eb71191b (diff)
fix error calls
Diffstat (limited to 'src/nix-store')
-rw-r--r--src/nix-store/nix-store.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index e4dd9bc96..1e8a88a7b 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -906,7 +906,7 @@ static void opServe(Strings opFlags, Strings opArgs)
if (!writeAllowed) throw Error("building paths is not allowed");
- auto drvPath = store->parseStorePath(readString(in)); // inonal ony
+ auto drvPath = store->parseStorePath(readString(in)); // informational only
BasicDerivation drv;
readDerivation(in, *store, drv);