Actions
Bug #82090
closedUpgrading from older TYPO3 versions removes TYPO3 sources from vendor dir
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2017-08-11
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Given the following composer.json
{ "require": { "typo3/cms": "^7.6.18" }, "extra": { "typo3/cms": { "cms-package-dir": "{$vendor-dir}/typo3/cms", "web-dir": "web" } } }
and performing
composer install
When I do composer require typo3/cms dev-master
I expect the web directory to have a typo3 folder with a symlink to sysext inside.
What actually happens:
I get the error message:
The symlink source "/test/vendor/typo3/cms/ty
po3/sysext" is not available.
This is due to the fact, that web/typo3/sysext will be deleted, which is a folder inside the TYPO3 sources,
as the 7.6 installation created a symlink from web/typo3 to the sources directory.
Actions