Skip to content

Commit

Permalink
Merge pull request #10506 from nextcloud/backport/10505/stable3.7
Browse files Browse the repository at this point in the history
[stable3.7] fix: wrong path for itinerary executable
  • Loading branch information
kesselb authored Dec 16, 2024
2 parents 6ebbf0a + 7f54561 commit 23118ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Migration/MakeItineraryExtractorExecutable.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class MakeItineraryExtractorExecutable implements IRepairStep {

public function __construct(LoggerInterface $logger,
?string $file = null) {
$this->file = $file ?? __DIR__ . '/../../vendor/christophwurst/kitinerary-bin/bin/kitinerary-extractor';
$this->file = $file ?? (__DIR__ . '/../../vendor/nextcloud/kitinerary-bin/bin/kitinerary-extractor');
$this->logger = $logger;
}

Expand Down

0 comments on commit 23118ef

Please sign in to comment.