diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-03-04T14·54+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-03-04T14·54+0100 |
commit | ce113c32d27a24552a6420ea0c082c6886708759 (patch) | |
tree | d75f4d88460d7b994784689c06fc242bd7ff49ea | |
parent | 7c9d7a253c52dfbf8488d3394fe8af104a3af234 (diff) |
Add warning about "nix" being experimental
-rw-r--r-- | src/nix/main.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix/main.cc b/src/nix/main.cc index 20d3ea5c2555..2005ec5f9a6d 100644 --- a/src/nix/main.cc +++ b/src/nix/main.cc @@ -16,6 +16,7 @@ struct NixArgs : virtual MultiCommand, virtual MixCommonArgs { mkFlag('h', "help", "show usage information", [=]() { printHelp(programName, std::cout); + std::cout << "\nNote: this program is EXPERIMENTAL and subject to change.\n"; throw Exit(); }); |