Files
newznab-tmux/app/Services/Tmux/Scripts/update_groups.php
T
2025-11-01 19:40:51 +01:00

20 lines
494 B
PHP

<?php
/**
* Update Groups - Utility Script
*
* This script updates first/last article numbers for all active groups.
*
* Modernized version - now delegates to Artisan command
* Original location: misc/update/tmux/bin/update_groups.php
* New location: app/Services/Tmux/Scripts/update_groups.php
*/
require_once __DIR__.'/../../../../bootstrap/autoload.php';
$artisan = base_path('artisan');
$command = "php {$artisan} groups:update";
passthru($command, $exitCode);
exit($exitCode);