// phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace -- Because RoboFile should not be namespaced
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From b2b3e213896d7eb41a83b0b0011aa64171a917cc Mon Sep 17 00:00:00 2001 | |
From: Thom Williams <[email protected]> | |
Date: Tue, 7 Nov 2017 04:47:43 -0800 | |
Subject: [PATCH] Add ability to disable individual or all installers | |
--- | |
src/Composer/Installers/Installer.php | 64 +++++++++++++++++++++++++++++++++++ | |
1 file changed, 64 insertions(+) | |
diff --git a/src/Composer/Installers/Installer.php b/src/Composer/Installers/Installer.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/scripts/composer/ScriptHandler.php b/scripts/composer/ScriptHandler.php | |
index a75e4d3..b7f4d09 100644 | |
--- a/scripts/composer/ScriptHandler.php | |
+++ b/scripts/composer/ScriptHandler.php | |
@@ -50,14 +50,6 @@ class ScriptHandler { | |
$fs->chmod($drupalRoot . '/sites/default/settings.php', 0666); | |
$event->getIO()->write("Create a sites/default/settings.php file with chmod 0666"); | |
} | |
- | |
- // Create the files directory with chmod 0777 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/includes/backend.inc b/includes/backend.inc | |
index 4dce8365..89cec3cd 100644 | |
--- a/includes/backend.inc | |
+++ b/includes/backend.inc | |
@@ -845,7 +845,7 @@ function drush_backend_invoke_concurrent($invocations, $common_options = array() | |
$env_vars = $site_record['#env-vars']; | |
$php = array_key_exists('php', $site_record) ? $site_record['php'] : (array_key_exists('php', $command_options) ? $command_options['php'] : NULL); | |
$drush_command_path = drush_build_drush_command($drush_path, $php, $os, $is_remote, $env_vars); | |
- $cmd = _drush_backend_generate_command($site_record, $drush_command_path . " " . _drush_backend_argument_string($drush_global_options, $os) . " " . $site_record_to_dispatch . " " . $command, $args, $commandline_options, $backend_options) . ' 2>&1'; | |
+ $cmd = _drush_backend_generate_command($site_record, $drush_command_path . " " . _drush_backend_argument_string($drush_global_options, $os) . " " . $site_record_to_dispatch . " " . $command, $args, $commandline_options, $bac |