commit | 28e756644fa17f15beeee4011154e7656af7f49a | [log] [tgz] |
---|---|---|
author | Chris Withers <[email protected]> | Sun Apr 28 19:41:23 2019 +0100 |
committer | Chris Withers <[email protected]> | Tue Apr 30 08:39:55 2019 +0100 |
tree | b0caff6dbdee14c7f63e2a0151b07e0e36eebf9d | |
parent | 18794433d33c35017a300fd40ac30afbc9dbb95a [diff] [blame] |
only include stuff we're interested in when applying the patch
diff --git a/backport.py b/backport.py index afe87d4..d2a276f 100644 --- a/backport.py +++ b/backport.py
@@ -72,7 +72,10 @@ target.write(patch) print(f'wrote {patch_path}') - call(f'git am -k --reject {patch_path}', cwd=mock_repo, shell=True) + call(f'git am -k ' + f'--include "mock/*" --include NEWS --include "NEWS.d/*" ' + f'--reject {patch_path} ', + cwd=mock_repo, shell=True) def update_last_sync(mock_repo, rev):