Jordi Boggiano пре 5 година
родитељ
комит
ee09b75be3
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      src/Composer/Command/RequireCommand.php

+ 1 - 2
src/Composer/Command/RequireCommand.php

@@ -283,7 +283,6 @@ EOT
             ->setIgnorePlatformRequirements($input->getOption('ignore-platform-reqs'))
             ->setPreferStable($input->getOption('prefer-stable'))
             ->setPreferLowest($input->getOption('prefer-lowest'))
-            ->setDryRun($input->getOption('dry-run'))
         ;
 
         // if no lock is present, or the file is brand new, we do not do a
@@ -293,7 +292,7 @@ EOT
         }
 
         $status = $install->run();
-        if ($status !== 0 || $input->getOption('dry-run')) {
+        if ($status !== 0) {
             $this->revertComposerFile(false);
         }