fix fatal error

This commit is contained in:
Arjan van de Ven
2017-02-24 20:08:29 +00:00
parent 5952aecd6a
commit a1007608ac
+1 -1
View File
@@ -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)