Compare commits
2 Commits
21e577b2ca
...
154bd410a4
Author | SHA1 | Date |
---|---|---|
tracer | 154bd410a4 | |
tracer | 7e85faf2f2 |
File diff suppressed because it is too large
Load Diff
|
@ -5,7 +5,7 @@ Shell Script to update phpBB to current version.
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
|
|
||||||
Switch into you current phpBB root directory, then
|
Switch into your current phpBB root directory, then
|
||||||
|
|
||||||
`git clone https://git.24unix.net/tracer/phpbb_updates.git`
|
`git clone https://git.24unix.net/tracer/phpbb_updates.git`
|
||||||
|
|
||||||
|
|
13
update.php
13
update.php
|
@ -6,4 +6,17 @@ use App\UpdateController;
|
||||||
require __DIR__ . '/vendor/autoload.php';
|
require __DIR__ . '/vendor/autoload.php';
|
||||||
|
|
||||||
$update = new UpdateController();
|
$update = new UpdateController();
|
||||||
|
|
||||||
|
$options = $update->parseOpts();
|
||||||
|
|
||||||
|
// Help option
|
||||||
|
if (array_key_exists(key: 'h', array: $options) || array_key_exists(key: 'help', array: $options)) {
|
||||||
|
$update->printHelp();
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (array_key_exists(key: 'd', array: $options) || array_key_exists(key: 'dry-run', array: $options)) {
|
||||||
|
$update->setDryRun();
|
||||||
|
}
|
||||||
|
|
||||||
$update->handleUpdate();
|
$update->handleUpdate();
|
||||||
|
|
Loading…
Reference in New Issue