Browse Source

Merge pull request #5 from brettlangdon/bug/git.vendor.list.sqwished

Fix issue not listing all dependencies
pull/7/head v1.1.1
Brett Langdon 10 years ago
parent
commit
ab50b5529a
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      bin/git-vendor

+ 1
- 2
bin/git-vendor View File

@ -97,8 +97,7 @@ git-vendor-ref: $ref
cmd_list()
{
showOnly="$1"
vendorNames=$(vendor_names_from_log)
for name in "${vendorNames[@]}";
for name in $(vendor_names_from_log);
do
vendor_git_log_first "$name" |
while read a b junk; do


Loading…
Cancel
Save