Pull Requests | Issues | v2.31.0...v2.32.0
Features
#3075 #3094 Support removing links from the bin
directory
By default, aqua remove
command removes only packages from the pkgs
directory and doesn't remove links from the bin
directory.
This release has added the command line option -mode
to the remove command.
The value of -mode
is a string containing characters l
and p
.
The order of the characters doesn't matter.
aqua rm -m l cli/cli # Remove only links
aqua rm -m pl cli/cli # Remove links and packages
You can also configure the mode by the environment variable AQUA_REMOVE_MODE
, so you can change the default behaviour of aqua remove
command by setting AQUA_REMOVE_MODE
in your shell setting such as .bashrc
.
export AQUA_REMOVE_MODE=pl