summaryrefslogtreecommitdiffstats
path: root/phpdcd-rpm.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-05-04 09:49:16 +0200
committerRemi Collet <fedora@famillecollet.com>2014-05-04 09:49:16 +0200
commitd3a601cc8f12dce102001068388a51aff9a84751 (patch)
tree691c2221c416b2e8dd6a23ff8ccdb2093bd73852 /phpdcd-rpm.patch
parent8a874ca5188f6a6a4a829b2472484b56bfa45b54 (diff)
php-phpunit-phpdcd: 1.0.2, sources from github
Diffstat (limited to 'phpdcd-rpm.patch')
-rw-r--r--phpdcd-rpm.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/phpdcd-rpm.patch b/phpdcd-rpm.patch
new file mode 100644
index 0000000..96c27ea
--- /dev/null
+++ b/phpdcd-rpm.patch
@@ -0,0 +1,34 @@
+diff -up ./phpdcd.rpm ./phpdcd
+--- ./phpdcd.rpm 2014-05-04 09:36:58.000000000 +0200
++++ ./phpdcd 2014-05-04 09:38:12.000000000 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env php
++#!/usr/bin/php
+ <?php
+ /**
+ * phpdcd
+@@ -42,23 +42,7 @@
+ * @since File available since Release 1.0.0
+ */
+
+-$loaded = false;
+-
+-foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
+- if (file_exists($file)) {
+- require $file;
+- $loaded = true;
+- break;
+- }
+-}
+-
+-if (!$loaded) {
+- die(
+- 'You need to set up the project dependencies using the following commands:' . PHP_EOL .
+- 'wget http://getcomposer.org/composer.phar' . PHP_EOL .
+- 'php composer.phar install' . PHP_EOL
+- );
+-}
++require 'SebastianBergmann/PHPDCD/Autoload.php';
+
+ $application = new SebastianBergmann\PHPDCD\CLI\Application;
+ $application->run();