We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 468e86e commit 76c42aeCopy full SHA for 76c42ae
1 file changed
src/Handler/GitHandler.php
@@ -33,13 +33,14 @@ public function handleResult(DetectionResult $detectionResult): void
33
{
34
try {
35
$data = $this->getData($detectionResult);
36
+ $installation = $this->installationFactory->getInstallation($detectionResult);
37
38
if (null === $data) {
39
+ $installation->setGitTag(null);
40
+
41
return;
42
}
43
- $installation = $this->installationFactory->getInstallation($detectionResult);
-
44
$this->gitCloneFactory->setGitCloneData($installation, $data);
45
} catch (\JsonException) {
46
// @TODO log exceptions
0 commit comments