Kaynağa Gözat

check if app in apps.txt before installing

version-14
Pratik Vyas 11 yıl önce
ebeveyn
işleme
c797648f91
1 değiştirilmiş dosya ile 3 ekleme ve 0 silme
  1. +3
    -0
      frappe/installer.py

+ 3
- 0
frappe/installer.py Dosyayı Görüntüle

@@ -89,6 +89,9 @@ def install_app(name, verbose=False, set_as_patched=True):
app_hooks = frappe.get_hooks(app_name=name)
installed_apps = frappe.get_installed_apps()

if name not in frappe.get_all_apps(with_frappe=True):
raise Exception("App not in apps.txt")

if name in installed_apps:
print "App Already Installed"
frappe.msgprint(_("App Already Installed"))


Yükleniyor…
İptal
Kaydet