Skip to content

Commit

Permalink
Fix wrong keyvalue store (#6082)
Browse files Browse the repository at this point in the history
  • Loading branch information
DieterHolvoet authored Aug 6, 2024
1 parent 2e8f7dc commit 997c8ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/core/DeployHookCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function __construct(
$this->root = $root;
$this->sitePath = $site_path;
$this->enabledExtensions = array_merge(array_keys($module_list), array_keys($theme_handler->listInfo()));
$this->keyValue = $key_value_factory->get('post_update');
$this->keyValue = $key_value_factory->get('deploy_hook');
$this->updateType = 'deploy';
}
};
Expand Down

0 comments on commit 997c8ca

Please sign in to comment.