summaryrefslogtreecommitdiff
path: root/src/phar-stub.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/phar-stub.php')
-rw-r--r--src/phar-stub.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/phar-stub.php b/src/phar-stub.php
index 64c463e..8535a6f 100644
--- a/src/phar-stub.php
+++ b/src/phar-stub.php
@@ -41,6 +41,13 @@ set_include_path(
. PATH_SEPARATOR . 'phar://' . __FILE__ . '/lib/'
);
Phar::webPhar(null, $web, null, array(), 'rewritePath');
+
+//work around https://bugs.php.net/bug.php?id=52322
+if (php_sapi_name() == 'cgi-fcgi') {
+ require 'phar://' . __FILE__ . '/' . $web;
+ exit();
+}
+
require 'phar://' . __FILE__ . '/' . $cli;
__HALT_COMPILER();
?>