This commit is contained in:
@ -62,17 +62,13 @@ class CommandBackup extends Command
|
||||
$template['rclone_version'] = $rclone->getVersion();
|
||||
$template['destination_size_before'] = $rclone->getSize($conf['destination']);
|
||||
|
||||
$template['stdout'] = $rclone->copy(
|
||||
$conf['source'],
|
||||
$conf['destination'],
|
||||
$app->getConfig()['rclone']['options']
|
||||
);
|
||||
$rclone->copy($conf['source'], $conf['destination'], $app->getConfig()['rclone']['options']);
|
||||
|
||||
$template['destination_size_after'] = $rclone->getSize($conf['destination']);
|
||||
$template['end'] = new DateTime();
|
||||
|
||||
$message = $twig->render('notify', $template);
|
||||
} catch (\Throwable $e) {
|
||||
} catch (\Exception $e) {
|
||||
$message = $e->getMessage();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user