Fix problem with single-page not rebuilding.
authorCameron McCormack <cam@mcc.id.au>
Thu, 28 Mar 2013 11:21:11 +1100
changeset 67 6704e4afa639
parent 66 4a27c844bd7e
child 68 557b9e931bcb
Fix problem with single-page not rebuilding.
build.py
--- a/build.py	Thu Mar 28 11:06:58 2013 +1100
+++ b/build.py	Thu Mar 28 11:21:11 2013 +1100
@@ -174,7 +174,7 @@
 else:
   singlePageTime = getmtime(single_page)
   for name in all:
-    if getmtime(join(master_dir, name + ".html")) > singlePageTime:
+    if getmtime(join(publish_dir, name + ".html")) > singlePageTime:
       buildSinglePage = True
       break