18 lines
540 B
PHP
18 lines
540 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
/* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* FILE INFORMATION
|
|
* DEFGROUP: moko-platform.CLI
|
|
* INGROUP: moko-platform
|
|
* REPO: https://git.mokoconsulting.tech/MokoConsulting/moko-platform
|
|
* PATH: /cli/release_cascade.php
|
|
* VERSION: 09.21.00
|
|
* BRIEF: DEPRECATED — cascade behavior removed. Each release stream is independent.
|
|
*/
|
|
|
|
echo "release_cascade.php: No-op (cascade behavior removed — each stream is independent)\n";
|
|
exit(0);
|