diff --git a/autospec/git.py b/autospec/git.py index 08597b7..25425d0 100644 --- a/autospec/git.py +++ b/autospec/git.py @@ -44,7 +44,7 @@ def commit_to_git(path): call("git remote add origin %s" % upstream_uri, cwd=path) for config_file in config.config_files: - call("git add %s" % config_file, cwd=path) + call("git add %s" % config_file, cwd=path, check=False) for unit in buildpattern.sources["unit"]: call("git add %s" % unit, cwd=path) call("git add Makefile", cwd=path)