diff options
-rw-r--r-- | meta/lib/oeqa/utils/gitarchive.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/gitarchive.py b/meta/lib/oeqa/utils/gitarchive.py index 6e8040eb5c..6db8c99147 100644 --- a/meta/lib/oeqa/utils/gitarchive.py +++ b/meta/lib/oeqa/utils/gitarchive.py | |||
@@ -67,7 +67,7 @@ def git_commit_data(repo, data_dir, branch, message, exclude, notes, log): | |||
67 | 67 | ||
68 | # Remove files that are excluded | 68 | # Remove files that are excluded |
69 | if exclude: | 69 | if exclude: |
70 | repo.run_cmd(['rm', '--cached'] + [f for f in exclude], env_update) | 70 | repo.run_cmd(['rm', '--cached', '--ignore-unmatch'] + [f for f in exclude], env_update) |
71 | 71 | ||
72 | tree = repo.run_cmd('write-tree', env_update) | 72 | tree = repo.run_cmd('write-tree', env_update) |
73 | 73 | ||
@@ -166,6 +166,8 @@ def gitarchive(data_dir, git_dir, no_create, bare, commit_msg_subject, commit_ms | |||
166 | log.info("Pushing data to remote") | 166 | log.info("Pushing data to remote") |
167 | data_repo.run_cmd(cmd) | 167 | data_repo.run_cmd(cmd) |
168 | 168 | ||
169 | return tag_name | ||
170 | |||
169 | # Container class for tester revisions | 171 | # Container class for tester revisions |
170 | TestedRev = namedtuple('TestedRev', 'commit commit_number tags') | 172 | TestedRev = namedtuple('TestedRev', 'commit commit_number tags') |
171 | 173 | ||