mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Merge branch 'dev' of https://github.com/YunoHost/moulinette into dev
This commit is contained in:
commit
0b85eccce9
1 changed files with 9 additions and 1 deletions
|
@ -246,7 +246,15 @@ def app_install(app, domain, path='/', label=None, mode='private'):
|
|||
|
||||
unique_app_id = manifest['yunohost']['uid'] +'__'+ str(instance_number)
|
||||
app_final_path = apps_path +'/'+ unique_app_id
|
||||
script_var_dict = { 'APP_DIR': app_tmp_folder }
|
||||
script_var_dict = {
|
||||
'APP_DIR': app_tmp_folder,
|
||||
'APP_FINAL_DIR': app_final_path,
|
||||
'APP_ID': unique_app_id
|
||||
}
|
||||
|
||||
if lvl(manifest, 'yunohost', 'webapp'):
|
||||
script_var_dict['APP_DOMAIN'] = domain
|
||||
script_var_dict['APP_PATH'] = path
|
||||
|
||||
|
||||
#########################################
|
||||
|
|
Loading…
Add table
Reference in a new issue