mirror of
https://github.com/YunoHost-Apps/invoiceninja5_ynh.git
synced 2024-09-03 19:26:23 +02:00
9 lines
291 B
Text
9 lines
291 B
Text
# we need to clear invoiceninja's cache after updating vars
|
|
# through the config-panel.
|
|
ynh_app_config_apply() {
|
|
_ynh_app_config_apply
|
|
pushd "$install_dir"
|
|
# Optimize the framework for better performance
|
|
php$phpversion artisan optimize --no-interaction --verbose
|
|
popd
|
|
}
|