Christopher Vagnetoft
e77e61d0b0
* Implemented the --image option * Implemented the --write-state option to go with --check * Fixed bug in Lockfile class
15 lines
307 B
PHP
Executable File
15 lines
307 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require_once __DIR__."/../vendor/autoload.php";
|
|
|
|
if (file_exists(__DIR__."/../src/version.php")) {
|
|
require_once __DIR__."/../src/version.php";
|
|
} else {
|
|
define("APP_VERSION", "DEV");
|
|
define("BUILD_DATE", "src");
|
|
}
|
|
|
|
$r = new NoccyLabs\FreshDocker\Refresher();
|
|
$r->run();
|