You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it's possible to change the name of the bit command, for example:
bvm config set DEFAULT_LINK bbiitt
bvm link
# command bbiitt is now available
after which, there is not way to remove the old command.
it should be as simple as
rm `which $OLD_COMMAND_NAME`
additionally, we should prompt the user with a hint to remove the old link, like
❯ bvm config set DEFAULT_LINK bbiitt
❯ bvm install
# ...
❯ bvm config set DEFAULT_LINK bit
❯ bvm link
name bit points to version 0.0.406
successfully linked binaries
use `bvm unlink bbiitt` to remove old command# or
rm `which bbiitt` to remove old command
The text was updated successfully, but these errors were encountered:
it's possible to change the name of the bit command, for example:
after which, there is not way to remove the old command.
it should be as simple as
rm `which $OLD_COMMAND_NAME`
additionally, we should prompt the user with a hint to remove the old link, like
The text was updated successfully, but these errors were encountered: