浏览代码

add BUNDLED_COMMANDS functionality to bundler plugin

Thomas Kriechbaumer 10 年之前
父节点
当前提交
4b997429b3
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      plugins/bundler/bundler.plugin.zsh

+ 5 - 0
plugins/bundler/bundler.plugin.zsh

@@ -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() {