diff options
Diffstat (limited to 'src/nix-env/nix-env.cc')
-rw-r--r-- | src/nix-env/nix-env.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nix-env/nix-env.cc b/src/nix-env/nix-env.cc index d9b48e81c9fd..bb6df32d0fd0 100644 --- a/src/nix-env/nix-env.cc +++ b/src/nix-env/nix-env.cc @@ -4,7 +4,6 @@ #include "misc.hh" #include "shared.hh" #include "eval.hh" -#include "help.txt.hh" #include "get-drvs.hh" #include "attr-path.hh" #include "common-opts.hh" @@ -66,7 +65,7 @@ typedef void (* Operation) (Globals & globals, void printHelp() { - cout << string((char *) helpText); + showManPage("nix-env"); } |