other image width
more Korra cosplay photos??
even more fine-grained tag size?? (I tried this once and made it look worse :/)
-make the autoscheduler compatible with force-pushing (`reset --hard` instead of `pull`)
Atom vs. RSS proper??
# repo confuse us
our_env = os.environ.copy()
del our_env['GIT_DIR']
- subprocess.run(["git", "pull"], cwd=WORKING_REPO, env=our_env)
+
+ for git_cmd in [["git", "fetch", "origin"],
+ ["git", "reset", "--hard", "origin/master"]]:
+ subprocess.run(git_cmd, cwd=WORKING_REPO, env=our_env)
+
+ # sitegen now! (even if there are no posts to queue, we can at least update
+ # /drafts/) and make any back-edits to published posts live
+ subprocess.run(SITEGEN_COMMAND)
# look for scheduled future posts
future_publication_times = get_future_publication_times()