From 39662e95dc27f240bb70bee2fd3c8b81d9ef543b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 10 Sep 2023 18:52:39 +0200 Subject: [PATCH] Update install --- scripts/install | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/install b/scripts/install index ff16f71..fc95f99 100755 --- a/scripts/install +++ b/scripts/install @@ -61,24 +61,24 @@ exec_as_app() { } # Create database configuration file -exec_as_app console.php database:configure "$app" "$db_pwd" "$app" +ynh_exec_warn_less exec_as_app console.php database:configure "$app" "$db_pwd" "$app" # Create database contents -exec_as_app console.php database:install +ynh_exec_warn_less exec_as_app console.php database:install # Set default database directory cd "$install_dir" sed -i -e "s#storage/fgal#$data_dir#" lib/prefs/fgal.php # Lock installer -exec_as_app console.php installer:lock +ynh_exec_warn_less exec_as_app console.php installer:lock # Create data index -exec_as_app console.php index:rebuild +ynh_exec_warn_less exec_as_app console.php index:rebuild # Set on Long Term Support versions if [[ "$release_cycle" == "longterm" ]] then - exec_as_app console.php preferences:set tiki_release_cycle longterm + ynh_exec_warn_less exec_as_app console.php preferences:set tiki_release_cycle longterm fi #=================================================