mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 22:01:33 +00:00
18 lines
441 B
PHP
18 lines
441 B
PHP
#!/usr/bin/env 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
|
|
*/
|
|
|
|
$artisan = dirname(__DIR__, 4).'/artisan';
|
|
|
|
passthru("php {$artisan} groups:update", $exitCode);
|
|
exit($exitCode);
|