Skip to content
Snippets Groups Projects
Commit 2265d661 authored by catch's avatar catch
Browse files

Issue #3396574 by Spokje: Exclude copying 'core/node_modules' in getCodebaseFinder

(cherry picked from commit 465cb227)
parent 8bfede4d
Branches
Tags
10 merge requests!11628Update file MediaLibraryWidget.php,!7564Revert "Issue #3364773 by roshnichordiya, Chris Matthews, thakurnishant_06,...,!5752Issue #3275828 by joachim, quietone, bradjones1, Berdir: document the reason...,!5627Issue #3261805: Field not saved when change of 0 on string start,!5427Issue #3338518: send credentials in ajax if configured in CORS settings.,!5395Issue #3387916 by fjgarlin, Spokje: Each GitLab job exposes user email,!5217Issue #3386607 by alexpott: Improve spell checking in commit-code-check.sh,!4894Issue #3280279: Add API to allow sites to opt in to upload SVG images in CKEditor 5,!3106Issue #3017548: "Filtered HTML" text format does not support manual teaser break (<!--break-->),!872Draft: Issue #3221319: Race condition when creating menu links and editing content deletes menu links
Pipeline #38945 passed
Pipeline: drupal

#38965

    Pipeline: drupal

    #38964

      Pipeline: drupal

      #38963

        +1
        ......@@ -546,9 +546,8 @@ protected function getPortNumber() {
        * Use this method to copy the current codebase, including any patched
        * changes, into the workspace.
        *
        * By default, the copy will exclude sites/default/settings.php,
        * sites/default/files, and vendor/. Use the $iterator parameter to override
        * this behavior.
        * By default, the copy will exclude site-specific and build-related files and
        * directories. Use the $iterator parameter to override this behavior.
        *
        * @param \Iterator|null $iterator
        * (optional) An iterator of all the files to copy. Default behavior is to
        ......@@ -589,6 +588,7 @@ public function getCodebaseFinder() {
        ->notPath('#^sites/default/files#')
        ->notPath('#^sites/simpletest#')
        ->notPath('#^vendor#')
        ->notPath('#^core/node_modules#')
        ->notPath('#^sites/default/settings\..*php#')
        ->ignoreDotFiles(FALSE)
        ->ignoreVCS(FALSE);
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment