From f64dfa1d46e2565ddb9de97f68f15b935f30b690 Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Thu, 31 Oct 2013 11:43:51 +0530 Subject: [PATCH] [minor] removed checking out of wsgi after clone in install script, booboo --- install_erpnext.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_erpnext.py b/install_erpnext.py index 7b4f063a4c..303c83b222 100644 --- a/install_erpnext.py +++ b/install_erpnext.py @@ -200,7 +200,7 @@ def setup_folders(install_path): app = os.path.join(install_path, "app") if not os.path.exists(app): print "Cloning erpnext" - exec_in_shell("cd %s && git clone https://github.com/webnotes/erpnext.git app && cd app && git checkout wsgi" % install_path) + exec_in_shell("cd %s && git clone https://github.com/webnotes/erpnext.git app" % install_path) exec_in_shell("cd app && git config core.filemode false") if not os.path.exists(app): raise Exception, "Couldn't clone erpnext repository" @@ -208,7 +208,7 @@ def setup_folders(install_path): lib = os.path.join(install_path, "lib") if not os.path.exists(lib): print "Cloning wnframework" - exec_in_shell("cd %s && git clone https://github.com/webnotes/wnframework.git lib && cd lib && git checkout wsgi" % install_path) + exec_in_shell("cd %s && git clone https://github.com/webnotes/wnframework.git lib" % install_path) exec_in_shell("cd lib && git config core.filemode false") if not os.path.exists(lib): raise Exception, "Couldn't clone wnframework repository"