From 84cd7e5c322b4bd27e3b9dfa97b3d4bd77aa7419 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 15 May 2012 11:40:12 +0530 Subject: [PATCH] do not track wn-web.js and wn-web.css in repositor as they are built for each implementation, changed install file to create wn-web.js and wn-web.css --- install_erpnext.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/install_erpnext.py b/install_erpnext.py index 5ea4f448f9..be12702d88 100644 --- a/install_erpnext.py +++ b/install_erpnext.py @@ -107,13 +107,13 @@ os.system("lib/wnf.py -l") os.system("lib/wnf.py --sync_all -f") # create website files -#from webnotes.model.code import get_obj +from webnotes.model.code import get_obj # rewrite pages -#get_obj('Website Settings').rewrite_pages() - -#ss = get_obj('Style Settings') -#ss.validate() -#ss.on_update() +ws = get_obj('Website Settings') +ws.rewrite_pages() +ss = get_obj('Style Settings') +ss.validate() +ss.on_update() # set filemode false os.system("git config core.filemode false")