mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
13 lines
255 B
Plaintext
Executable File
13 lines
255 B
Plaintext
Executable File
<?php
|
|
|
|
require 'includes/shared.php';
|
|
|
|
if (!CLI)
|
|
die("this script must be run from CLI\n");
|
|
if (CLI && getcwd().DIRECTORY_SEPARATOR.'aowow' != __FILE__)
|
|
die("this script must be run from root directory\n");
|
|
else
|
|
require 'setup/setup.php';
|
|
|
|
?>
|