From 2617490fa9b895690ad9d3aeaaf040ee28f0223a Mon Sep 17 00:00:00 2001 From: "Sven Carstens [UDG]" Date: Thu, 16 Mar 2017 14:33:51 +0100 Subject: [PATCH] [BUG] Use the from sha-1 parameter really as from with git, not as to. --- src/BaseCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BaseCommand.php b/src/BaseCommand.php index 8eedb8c..fdf85e7 100644 --- a/src/BaseCommand.php +++ b/src/BaseCommand.php @@ -68,7 +68,7 @@ protected function getGitArguments(InputInterface $input, OutputInterface $outpu if($to) { $rangeArg = escapeshellarg("$from..$to"); } else { - $rangeArg = escapeshellarg("$from"); + $rangeArg = escapeshellarg("$from.."); } return array($lockFrom, $lockTo, $rangeArg);