1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

add BUNDLED_COMMANDS functionality to bundler plugin

This commit is contained in:
Thomas Kriechbaumer
2014-07-07 20:07:02 +02:00
parent 34bc91e79d
commit 4b997429b3

View File

@@ -43,6 +43,11 @@ for cmd in $UNBUNDLED_COMMANDS; do
bundled_commands=(${bundled_commands#$cmd}); bundled_commands=(${bundled_commands#$cmd});
done done
# Add $BUNDLED_COMMANDS to the bundled_commands list
for cmd in $BUNDLED_COMMANDS; do
bundled_commands+=($cmd);
done
## Functions ## Functions
bundle_install() { bundle_install() {