Do not symlink the drush directory
>>> [!note] Migrated issue
<!-- Drupal.org comment -->
<!-- Migrated from issue #3422644. -->
Reported by: [jurgenhaas](https://www.drupal.org/user/168924)
Related to !132
>>>
<h3 id="summary-problem-motivation">Problem/Motivation</h3>
<p>The <code>expand_composer_json.php</code> script configured composer.json such that <code>type:drupal-drush</code> packages get installed in the drush directory of the project root.</p>
<p>However, the <code>symlink_project.php</code> script links all objects from that root into <code>web/modules/custom/PROJECT</code> directory, except those listed in the array: <code>['.', '..', '.git', '.idea', 'vendor', $webRoot, 'symlink_project.php']</code>.</p>
<p>That means, if you modules comes with a dependency to a drush command package, that will be linked and therefore also tested. That's not what we want, as this is "foreign" code.</p>
<h3 id="summary-proposed-resolution">Proposed resolution</h3>
<p>Add <code>'drush'</code> to the array of ignored objects.</p>
issue