浏览代码

[minor] [install] sync doctypes for app

version-14
Rushabh Mehta 12 年前
父节点
当前提交
5302d1e8e8
共有 1 个文件被更改,包括 6 次插入5 次删除
  1. +6
    -5
      webnotes/install_lib/install.py

+ 6
- 5
webnotes/install_lib/install.py 查看文件

@@ -83,14 +83,15 @@ class Installer:
try:
from startup import install
except ImportError, e:
print "No app install found"
return
install = None

install.pre_import()
sync_for("app", force=True, sync_everything=True)
install and install.pre_import()
if os.path.exists("app"):
sync_for("app", force=True, sync_everything=True)

print "Completing App Import..."
install.post_import()
install and install.post_import()
print "Updating patches..."
self.set_all_patches_as_completed()



正在加载...
取消
保存