Skip to content

Commit

Permalink
https://github.com/mage2pro/pwa-studio-2024-02-24-backend/issues/1
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Feb 24, 2024
1 parent fadd18a commit 1716e78
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,13 @@ public function write(array $scopes): void
if (false === in_array($scope, $this->scopePriorityScheme, true)) {
$this->scopePriorityScheme[] = $scope;
}
$cacheId = implode('|', $this->scopePriorityScheme) . "|" . $this->cacheId;
# 2024-02-24 Dmitrii Fediuk https://upwork.com/fl/mage2pro
# 1) "Adapt Magento to Windows": https://github.com/mage2pro/pwa-studio-2024-02-24-backend/issues/1
# 2) "How to fix «file_put_contents(generated/metadata/primary|global|plugin-list.php):
# failed to open stream: No such file or directory
# in lib\internal\Magento\Framework\Interception\PluginListGenerator.php on line 414»
# in Magento 2.4-develop in Windows?" https://mage2.pro/t/6178
$cacheId = implode('-', $this->scopePriorityScheme) . "-" . $this->cacheId;
[
$virtualTypes,
$this->scopePriorityScheme,
Expand Down

0 comments on commit 1716e78

Please sign in to comment.