Fix command error in filter

An apparently missing space in an if condition causes a command not
found error.

Change-Id: I40e2ea3dbe6f2ce507e9aaa7a563054d009f9c0b
This commit is contained in:
Dean Troyer 2018-04-27 17:23:31 -05:00
parent 3a0fb60b33
commit 5c0df7ef13
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