aboutsummaryrefslogtreecommitdiff
path: root/src/nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-03-31 13:45:28 +0200
committerEelco Dolstra <edolstra@gmail.com>2020-03-31 13:45:28 +0200
commit3166b97174ab879dac3b19eb3f257e73a943fef0 (patch)
tree9c88bd11a362e165a5b1f389b5c67ab7dc3da56e /src/nix
parente1a94ad852e91fcdcf4efb60fe7e9b9e328df7ac (diff)
nix shell -> nix dev-shell
Diffstat (limited to 'src/nix')
-rw-r--r--src/nix/shell.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/shell.cc b/src/nix/shell.cc
index 82b1da552..71e640667 100644
--- a/src/nix/shell.cc
+++ b/src/nix/shell.cc
@@ -92,7 +92,7 @@ StorePath getDerivationEnvironment(ref<Store> store, Derivation drv)
{
auto builder = baseNameOf(drv.builder);
if (builder != "bash")
- throw Error("'nix shell' only works on derivations that use 'bash' as their builder");
+ throw Error("'nix dev-shell' only works on derivations that use 'bash' as their builder");
drv.args = {
"-c",