diff options
-rwxr-xr-x | bin/repoman | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/repoman b/bin/repoman index 0d1f9ca0d..bf0654516 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1945,8 +1945,8 @@ else: write_atomic(x, "".join(mylines)) manifest_commit_required = True - if vcs != 'git' and (myupdates or myremoved or mynew): - myfiles=myupdates+myremoved+mynew + if vcs != 'git' and (myupdates or myremoved): + myfiles = myupdates + myremoved for x in range(len(myfiles)-1, -1, -1): if myfiles[x].count("/") < 4-repolevel: del myfiles[x] |