diff options
author | Josh Triplett <josh@joshtriplett.org> | 2019-01-27 08:27:33 +0100 |
---|---|---|
committer | Josh Triplett <josh@joshtriplett.org> | 2019-01-27 08:27:33 +0100 |
commit | 0eceebbdfdc2c5e1d677bff95a9ac1ef2f728337 (patch) | |
tree | ea115e22ccc8ba68b83e5f86d3e90915b80943c9 /cmdline/apt.cc | |
parent | 4200469bb5a14c4659285917ed30c46a0b15c286 (diff) |
Add a "reinstall" command as an alias for "install --reinstall".
aptitude has a similar "reinstall" command for precedent.
Diffstat (limited to 'cmdline/apt.cc')
-rw-r--r-- | cmdline/apt.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmdline/apt.cc b/cmdline/apt.cc index f508406d1..d388e4af4 100644 --- a/cmdline/apt.cc +++ b/cmdline/apt.cc @@ -63,6 +63,7 @@ static std::vector<aptDispatchWithHelp> GetCommands() /*{{{*/ // package stuff {"install", &DoInstall, _("install packages")}, + {"reinstall", &DoInstall, _("reinstall packages")}, {"remove", &DoInstall, _("remove packages")}, {"autoremove", &DoInstall, _("Remove automatically all unused packages")}, {"auto-remove", &DoInstall, nullptr}, |