Problem/Motivation
The theme generated via the core script drupal is written to /themes, instead of /themes/custom.
Steps to reproduce
Execute php web/core/scripts/drupal/generate-theme your_new_theme
See that it's in /themes.
Proposed resolution
Modify line #92 or core/lib/Drupal/Core/Command/GenerateTheme.php to read
$destination = trim($input->getOption('path'), '/') . '/custom/' . $destination_theme;
instead of
$destination = trim($input->getOption('path'), '/') . '/' . $destination_theme;
Remaining tasks
N/A
User interface changes
N/A
Introduced terminology
N/A
API changes
N/A
Data model changes
N/A
Release notes snippet
N/A