Merge "Fix command error in filter"

This commit is contained in:
Zuul 2018-04-28 00:08:32 +00:00 committed by Gerrit Code Review
commit ab5008d844
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ for file in $files_to_keep; do
if git merge-base --is-ancestor $root $file_root; then
fail=1
break
elif !git merge-base --is-ancestor $file_root $root; then
elif ! git merge-base --is-ancestor $file_root $root; then
new_roots="$new_roots $root"
fi
done