Browse Source

Do not assume we are on Linux and have head, tail, and awk commands available. Instead, parse the output in PHP.

kthbit 7 years ago
parent
commit
72a66ad9d2
1 changed files with 4 additions and 3 deletions
  1. 4 3
      src/Composer/Repository/Vcs/FossilDriver.php

+ 4 - 3
src/Composer/Repository/Vcs/FossilDriver.php

@@ -140,9 +140,10 @@ class FossilDriver extends VcsDriver
      */
      */
     public function getChangeDate($identifier)
     public function getChangeDate($identifier)
     {
     {
-        $this->process->execute(sprintf('fossil finfo composer.json | head -n 2 | tail -n 1 | awk \'{print $1}\''), $output, $this->checkoutDir);
-
-        return new \DateTime(trim($output), new \DateTimeZone('UTC'));
+        $this->process->execute('fossil finfo -b -n 1 composer.json', $output, $this->checkoutDir);
+        list($ckout, $date, $message) = explode(' ', trim($output), 3);
+        
+        return new \DateTime($date, new \DateTimeZone('UTC'));
     }
     }
 
 
     /**
     /**