1
0
Fork 0

Revert issue in previous fix

pull/12217/head
Jordi Boggiano 2024-06-10 22:41:26 +02:00
parent 54a3beda47
commit e9560a619e
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
2 changed files with 4 additions and 4 deletions

View File

@ -176,7 +176,7 @@ class VersionGuesser
$featurePrettyVersion = $prettyVersion;
// try to find the best (nearest) version branch to assume this feature's version
$result = $this->guessFeatureVersion($packageConfig, $version, $branches, 'git rev-list -- %candidate%..%branch%', $path, '%candidate%..%branch%');
$result = $this->guessFeatureVersion($packageConfig, $version, $branches, 'git rev-list %candidate%..%branch%', $path, '%candidate%..%branch%');
$version = $result['version'];
$prettyVersion = $result['pretty_version'];
}

View File

@ -121,7 +121,7 @@ class VersionGuesserTest extends TestCase
'stdout' => " arbitrary $commitHash Commit message\n* feature $anotherCommitHash Another message\n",
),
array(
'cmd' => 'git rev-list -- arbitrary..feature',
'cmd' => 'git rev-list arbitrary..feature',
'stdout' => "$anotherCommitHash\n",
),
), true);
@ -151,7 +151,7 @@ class VersionGuesserTest extends TestCase
'stdout' => " latest-testing $commitHash Commit message\n* feature $anotherCommitHash Another message\n",
),
array(
'cmd' => 'git rev-list -- latest-testing..feature',
'cmd' => 'git rev-list latest-testing..feature',
'stdout' => "$anotherCommitHash\n",
),
), true);
@ -364,7 +364,7 @@ class VersionGuesserTest extends TestCase
"remotes/origin/1.5 03a15d220da53c52eddd5f32ffca64a7b3801bea Commit message\n",
),
array(
'cmd' => 'git rev-list -- remotes/origin/1.5..feature-branch',
'cmd' => 'git rev-list remotes/origin/1.5..feature-branch',
'stdout' => "\n",
),
), true);