Merge "Remove quotes from subshell call in bash script"

This commit is contained in:
Jenkins 2015-10-22 16:26:41 +00:00 committed by Gerrit Code Review
commit 9b3769f091
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,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