mirror of
https://github.com/YunoHost-Apps/turtl_ynh.git
synced 2024-09-03 20:26:35 +02:00
Fix
This commit is contained in:
parent
838e9b1d52
commit
06eaba38ee
2 changed files with 4 additions and 2 deletions
|
@ -42,7 +42,7 @@ sync:
|
||||||
max_bulk_sync_records: 32
|
max_bulk_sync_records: 32
|
||||||
|
|
||||||
plugins:
|
plugins:
|
||||||
#plugin_location: '__FINALPATH__/example-plugins'
|
plugin_location: '__FINALPATH__/plugins'
|
||||||
# each key here corresponds to a folder name in the plugins folder, so `email`
|
# each key here corresponds to a folder name in the plugins folder, so `email`
|
||||||
# below would be a plugin at /var/www/turtl/server/plugins/email (see the
|
# below would be a plugin at /var/www/turtl/server/plugins/email (see the
|
||||||
# example-plugins/ folder for an email plugin you can use)
|
# example-plugins/ folder for an email plugin you can use)
|
||||||
|
|
|
@ -95,7 +95,9 @@ ynh_script_progression --message="Setting up source files..." --weight=3
|
||||||
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
||||||
git clone https://github.com/turtl/server "$final_path" --quiet
|
git clone https://github.com/turtl/server "$final_path" --quiet
|
||||||
|
|
||||||
mkdir -p $final_path/plugins
|
#mkdir -p $final_path/plugins
|
||||||
|
|
||||||
|
mv $final_path/example-plugins $final_path/plugins
|
||||||
|
|
||||||
chmod 750 "$final_path"
|
chmod 750 "$final_path"
|
||||||
chmod -R o-rwx "$final_path"
|
chmod -R o-rwx "$final_path"
|
||||||
|
|
Loading…
Reference in a new issue