diff --git a/install/updates/froxlor/0.10/update_0.10.inc.php b/install/updates/froxlor/0.10/update_0.10.inc.php index 43bc0f99..33b82bca 100644 --- a/install/updates/froxlor/0.10/update_0.10.inc.php +++ b/install/updates/froxlor/0.10/update_0.10.inc.php @@ -319,8 +319,13 @@ if (\Froxlor\Froxlor::isDatabaseVersion('201907270')) { if ($exec_allowed) { lastStepStatus(0); } else { - lastStepStatus(1, 'manual commands needed'); - echo 'Please run the following commands manually:
'.$del_list.'

'; + if (empty($del_list)) { + // non of the files existed + lastStepStatus(0); + } else { + lastStepStatus(1, 'manual commands needed'); + echo 'Please run the following commands manually:
'.$del_list.'

'; + } } \Froxlor\Froxlor::updateToDbVersion('201909150');