From 7a600ff29ca9f52ff217161b0103802c8afe6402 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 9 Jul 2013 14:36:40 +0530 Subject: [PATCH] [feature] generate latest updates page from git commit log --- webnotes/build.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webnotes/build.py b/webnotes/build.py index 143adb7daa..9da3583d41 100644 --- a/webnotes/build.py +++ b/webnotes/build.py @@ -43,6 +43,10 @@ def bundle(no_compress, cms_make=True): # build index.html and app.html from website.helpers.make_web_include_files import make make() + + if not no_compress: + from home.page.latest_updates import latest_updates + latest_updates.make() def watch(no_compress): """watch and rebuild if necessary"""