1
0
Fork 0

Show 7 chars of the git hashes everywhere

pull/1288/head
Jordi Boggiano 2012-11-02 18:25:55 +01:00
parent 6549360dac
commit 06a588c197
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ abstract class VcsDownloader implements DownloaderInterface
$from = $initial->getSourceReference();
$to = $target->getSourceReference();
} else {
$from = substr($initial->getSourceReference(), 0, 6);
$to = substr($target->getSourceReference(), 0, 6);
$from = substr($initial->getSourceReference(), 0, 7);
$to = substr($target->getSourceReference(), 0, 7);
}
$name .= ' '.$initial->getPrettyVersion();
} else {