]> git.pld-linux.org Git - packages/composer.git/blob - nogit.patch
R zlib ext to open compressed phar archives
[packages/composer.git] / nogit.patch
1 --- composer-alpha7/src/Composer/Compiler.php~  2013-04-01 13:18:27.000000000 +0300
2 +++ composer-alpha7/src/Composer/Compiler.php   2013-04-01 22:27:27.313555304 +0300
3 @@ -35,6 +35,8 @@
4              unlink($pharFile);
5          }
6  
7 +               $this->version = getenv('COMPOSER_VERSION');
8 +       if (empty($this->version)) {
9          $process = new Process('git log --pretty="%H" -n1 HEAD', __DIR__);
10          if ($process->run() != 0) {
11              throw new \RuntimeException('Can\'t run git log. You must ensure to run compile from composer git repository clone and that git binary is available.');
12 @@ -45,6 +47,7 @@
13          if ($process->run() == 0) {
14              $this->version = trim($process->getOutput());
15          }
16 +       }
17  
18          $phar = new \Phar($pharFile, 0, 'composer.phar');
19          $phar->setSignatureAlgorithm(\Phar::SHA1);
This page took 0.077608 seconds and 3 git commands to generate.