summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-06-09 12:37:15 +0300
committerLars Wirzenius <liw@liw.fi>2018-06-09 12:37:15 +0300
commit2cc0bda19b601994eb05ce545d362aecc448bde8 (patch)
tree8c940c0c69da42ed18421f4cf8254a766fbb431e
parent58dd4b7b4d23812e9a0a64e57ef9f31f2ceda606 (diff)
downloadhetznertool-2cc0bda19b601994eb05ce545d362aecc448bde8.tar.gz
Fix: ignore any git commit errors
-rwxr-xr-xhetznertool2
1 files changed, 1 insertions, 1 deletions
diff --git a/hetznertool b/hetznertool
index 3608177..18a86fa 100755
--- a/hetznertool
+++ b/hetznertool
@@ -217,7 +217,7 @@ def update_zone_file(style, domain, kick, args, dirname, basename):
filenames = [basename]
if serial is not None:
filename.append(serial)
- subprocess.check_call(
+ subprocess.call(
['git', 'commit', '-m', 'automatic zone update'] + filenames,
cwd=dirname)