summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-rw-r--r--build.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/build.py b/build.py
index eb9fdbb..004b869 100644
--- a/build.py
+++ b/build.py
@@ -18,6 +18,9 @@ def get_memes(directory):
def bake_thumbnails(memes):
for meme in memes:
if not os.access(meme.get("thumb"), os.F_OK):
+ thumb_path = os.path.dirname(meme.get("thumb"))
+ if not os.access(thumb_path, os.F_OK):
+ os.mkdir(thumb_path, int('0775', 8))
os.system("convert {} -resize 320x320^\> {}"
.format(meme.get("orig"), meme.get("thumb")))
@@ -30,11 +33,11 @@ def render_template(template_fname, output_fname, memes):
outdir = "."
-memes_dir = "oreily-memes"
+memes_dir = "orly-memes"
# The "om_" prefix means "oreily memes"
-om_template_fname = "templates/oreily-memes.html.j2"
+om_template_fname = "templates/orly-memes.html.j2"
om_outdir = outdir
-om_output_fname = om_outdir + "/" + "oreily-memes.html"
+om_output_fname = om_outdir + "/" + "orly-memes.html"
if not os.access(outdir, os.F_OK):
os.mkdir(outdir, int('0775', 8))