Hi Guys,
Just wondering why the include\cli\modules\deploy.php file is different in Git to the file in the production zip on the downloads page.
The GitHub file has the following from line 208
list($mode, $hash, , $path) = preg_split('/\s+/', $line);
$src = $source.$local.$path;
The production file has the following from line 208
list($mode, $hash, , $path, $pathx, $pathy, $pathz) = preg_split('/\s+/', $line);
if (isset($pathx))
$path = "$path $pathx";
if (isset($pathy))
$path = "$path $pathy";
if (isset($pathz))
$path = "$path $pathz";
$src = $source.$local.$path;
It has been like this for some time in multiple releases and just wondered why this was.
I've looked through GitHub and the files history and can't find the changes have ever been made or removed from that file.