Skip to content

Commit

Permalink
add BUNDLED_COMMANDS functionality to bundler plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Kriechi committed Jul 15, 2014
1 parent 34bc91e commit 4b99742
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions plugins/bundler/bundler.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ for cmd in $UNBUNDLED_COMMANDS; do
bundled_commands=(${bundled_commands#$cmd});
done

# Add $BUNDLED_COMMANDS to the bundled_commands list
for cmd in $BUNDLED_COMMANDS; do
bundled_commands+=($cmd);
done

## Functions

bundle_install() {
Expand Down

0 comments on commit 4b99742

Please sign in to comment.