diff --git a/git-third-party b/git-third-party index bc56155..a3fcfd2 100755 --- a/git-third-party +++ b/git-third-party @@ -135,7 +135,7 @@ def _save_at(name: str) -> None: patches_dir.joinpath(str(i)).unlink() patches_dir.mkdir(parents=True, exist_ok=True) target_dir = top_dir.joinpath(*name.split('/')) - subprocess.run(['git', 'format-patch', f'{conf["commit"]}..HEAD', '--no-numbered', '--zero-commit', '--numbered-files', '-o', patches_dir], check=True, cwd=target_dir) + subprocess.run(['git', 'format-patch', f'{conf["commit"]}..HEAD', '--no-numbered', '--zero-commit', '--no-signature', '--numbered-files', '-o', patches_dir], check=True, cwd=target_dir) new_patches = subprocess.run(['git', 'rev-list', '--count', f'{conf["commit"]}..HEAD'], check=True, cwd=target_dir, text=True, capture_output=True) conf['patches'] = int(new_patches.stdout.strip())