From e1e0f867a0fbdf60704bfa2e18bed63c4e2facec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81ngel=20Guzm=C3=A1n=20Maeso?= Date: Sat, 9 Jun 2012 04:59:48 +0200 Subject: [PATCH] Make explicit the phar:// scheme --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 93e6543..4ba6b5c 100644 --- a/index.php +++ b/index.php @@ -11,7 +11,7 @@ if (empty($config['git']['repositories']) || !is_dir($config['git']['repositorie die("Please, edit the config.ini file and provide your repositories directory"); } -require_once __DIR__.'/vendor/silex.phar'; +require_once 'phar://'.__DIR__.'/vendor/silex.phar'; $app = new Silex\Application(); $app['baseurl'] = $config['app']['baseurl'];