only copy .htrouter.php on *nix systems

This commit is contained in:
Ad Schellevis 2018-03-06 20:19:18 +01:00
parent 013e4efa56
commit 14659ecc2b
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,6 @@ if (in_array('-d', $argv)) {
$config = include __DIR__ . "/config/config.php";
// copy our ht access router to the core www directory
copy(__DIR__ . '/public/.htrouter.php', "{$config->environment->coreDir}/src/opnsense/www/.htrouter.php");
// copy default config when there is no config found
if (!is_file("{$config->globals->config_path}/config.xml")) {
@ -74,6 +72,8 @@ if (PHP_OS == 'WINNT') {
// for some reason, the windows version of the php local webserver expects the file location in it's current path
$run_command[] = "public\\.htrouter.php";
} else {
// copy our ht access router to the core www directory
copy(__DIR__ . '/public/.htrouter.php', "{$config->environment->coreDir}/src/opnsense/www/.htrouter.php");
$run_command[] = ".htrouter.php";
}