Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
Merge details:

commit 87a6a89
Author: Jelle Sebreghts <[email protected]>
Date:   Thu Jan 18 13:07:08 2024

    Fix path for cache clear at end of release
  • Loading branch information
Jelle-S committed Jan 18, 2024
2 parents 500637d + 87a6a89 commit 3fb392b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EventHandler/ClearCacheHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function handle(GenericEvent $event)
/** @var RemoteConfig $remoteConfig */
$remoteConfig = $event->getArgument('remoteConfig');
$remoteSettings = $remoteConfig->getRemoteSettings();
$currentProjectRoot = $remoteConfig->getCurrentProjectRoot();
$currentProjectRoot = $currentWebRoot = $remoteSettings['currentdir'] . '/..';
$aliases = $remoteSettings['aliases'] ?: [0 => false];
$collection = $this->collectionBuilder();
$auth = new KeyFile($remoteConfig->getUser(), $remoteConfig->getPrivateKeyFile());
Expand Down

0 comments on commit 3fb392b

Please sign in to comment.