diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-06-04 11:14:19 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-06-04 11:14:19 +0200 |
commit | 0f44b60e6dc999697bf9f2a4b3652a0551016598 (patch) | |
tree | bce14b1fde0610fe36dd8c3c6e75e26dcb25135c /src/libutil/args.hh | |
parent | 61e3d598b67290ca66f34fcac7b7373f506240da (diff) |
Make 'nix dev-shell' a deprecated alias for 'nix develop'
Diffstat (limited to 'src/libutil/args.hh')
-rw-r--r-- | src/libutil/args.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libutil/args.hh b/src/libutil/args.hh index 1932e6a8a..154d1e6aa 100644 --- a/src/libutil/args.hh +++ b/src/libutil/args.hh @@ -234,6 +234,8 @@ public: std::map<Command::Category, std::string> categories; + std::map<std::string, std::string> deprecatedAliases; + // Selected command, if any. std::optional<std::pair<std::string, ref<Command>>> command; |