X-Git-Url: https://projects.mako.cc/source/iron-blogger/blobdiff_plain/30fd9f8032af69d94001dfbddcdb5b392e9e4bcd..7d0771a856d56d109945270692a12e62cfd2b7b4:/weekly-update.py diff --git a/weekly-update.py b/weekly-update.py index ad6ef1a..284ffb6 100755 --- a/weekly-update.py +++ b/weekly-update.py @@ -25,8 +25,9 @@ with open('ledger', 'a') as f: f.write("\n") f.write(render.render_template('templates/ledger', date)) -subprocess.check_call(["git", "commit", "ledger", - "-m", "Update for %s" % (date,)]) +if not dry_run: + subprocess.check_call(["git", "commit", "ledger", + "-m", "Update for %s" % (date,)]) debts = render.get_debts() punt = [] @@ -80,5 +81,13 @@ if punt: with open('bloggers.yml','w') as b: yaml.safe_dump(bloggers, b) - subprocess.check_call(["git", "commit", "ledger", "bloggers.yml", - "-m", "Punts for %s" % (today,)]) + if not dry_run: + subprocess.check_call(["git", "commit", "ledger", "bloggers.yml", + "-m", "Punts for %s" % (today,)]) + +# if it's a dry run, lets set the ledger back to the beginning state +if dry_run: + subprocess.check_call(["git", "checkout", "ledger"]) + + if punt: + subprocess.check_call(["git", "checkout", "bloggers.yml"])