diff --git a/symfony b/symfony index 3450a60..2ace3f2 100755 --- a/symfony +++ b/symfony @@ -20,6 +20,11 @@ require file_exists(__DIR__.'/vendor/autoload.php') $appVersion = '1.0.3-DEV'; +// Windows uses Path instead of PATH +if (!isset($_SERVER['PATH']) && isset($_SERVER['Path'])) { + $_SERVER['PATH'] = $_SERVER['Path']; +} + $app = new Symfony\Component\Console\Application('Symfony Installer', $appVersion); $app->add(new Symfony\Installer\AboutCommand($appVersion)); $app->add(new Symfony\Installer\NewCommand());