diff --git a/src/nix/run.cc b/src/nix/run.cc index 66f416efc..ade87e63a 100644 --- a/src/nix/run.cc +++ b/src/nix/run.cc @@ -30,8 +30,8 @@ struct CmdRun : InstallablesCommand .longName("command") .shortName('c') .description("command and arguments to be executed; defaults to 'bash'") - .arity(ArityAny) .labels({"command", "args"}) + .arity(ArityAny) .handler([&](std::vector ss) { if (ss.empty()) throw UsageError("--command requires at least one argument"); command = ss;