Browse Source

Fix issue not listing all dependencies

fixes #4
bug/git.vendor.list.sqwished
Brett Langdon 10 years ago
parent
commit
f938ff71d4
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