Merge "Remove quotes from subshell call in tools/split.sh"

This commit is contained in:
Jenkins 2015-08-11 07:35:23 +00:00 committed by Gerrit Code Review
commit d737578305
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ pruner="git ls-files | grep -v \"$keep_pattern\" | git update-index --force-remo
roots=""
for file in $files_to_keep; do
file_root="$(git rev-list --reverse HEAD -- $file | head -n1)"
file_root=$(git rev-list --reverse HEAD -- $file | head -n1)
fail=0
for root in $roots; do
if git merge-base --is-ancestor $root $file_root; then