mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-08-07 06:08:39 +02:00
fix(bundler): restore bu and add bua alias (#13872)
* fix(bundler): make `bu` pass arguments through Preserve `bundle update --all` for the no-argument form while allowing specific gems and options to pass through. Fixes #13871 Assisted-by: Claude Fable 5 (Claude Code) * fix(bundler): keep bu as generic update alias * feat(bundler): add alias for update all
This commit is contained in:
parent
98fe9b81a6
commit
59a9740721
2 changed files with 4 additions and 2 deletions
|
|
@ -9,7 +9,8 @@ alias bl="bundle list"
|
|||
alias bo="bundle open"
|
||||
alias bout="bundle outdated"
|
||||
alias bp="bundle package"
|
||||
alias bu="bundle update --all"
|
||||
alias bu="bundle update"
|
||||
alias bua="bundle update --all"
|
||||
|
||||
## Gem wrapper
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue