Эх сурвалжийг харах

rename skipScripts to runScripts.

Paweł Jędrzejewski 13 жил өмнө
parent
commit
129884ef72

+ 1 - 1
src/Composer/Command/InstallCommand.php

@@ -58,7 +58,7 @@ EOT
             ->setVerbose($input->getOption('verbose'))
             ->setPreferSource($input->getOption('prefer-source'))
             ->setDevMode($input->getOption('dev'))
-            ->setSkipScripts($input->getOption('skip-scripts'))
+            ->setRunScripts(!$input->getOption('skip-scripts'))
         ;
 
         return $install->run() ? 0 : 1;

+ 1 - 1
src/Composer/Command/UpdateCommand.php

@@ -56,7 +56,7 @@ EOT
             ->setVerbose($input->getOption('verbose'))
             ->setPreferSource($input->getOption('prefer-source'))
             ->setDevMode($input->getOption('dev'))
-            ->setSkipScripts($input->getOption('skip-scripts'))
+            ->setRunScripts(!$input->getOption('skip-scripts'))
             ->setUpdate(true)
         ;
 

+ 7 - 7
src/Composer/Installer.php

@@ -88,7 +88,7 @@ class Installer
     protected $dryRun = false;
     protected $verbose = false;
     protected $update = false;
-    protected $skipScripts = false;
+    protected $runScripts = true;
 
     /**
      * @var array
@@ -152,7 +152,7 @@ class Installer
 
         $aliases = $this->aliasPackages();
 
-        if (!$this->dryRun && !$this->skipScripts) {
+        if (!$this->dryRun && $this->runScripts) {
             // dispatch pre event
             $eventName = $this->update ? ScriptEvents::PRE_UPDATE_CMD : ScriptEvents::PRE_INSTALL_CMD;
             $this->eventDispatcher->dispatchCommandEvent($eventName);
@@ -195,7 +195,7 @@ class Installer
             $localRepos = new CompositeRepository($this->repositoryManager->getLocalRepositories());
             $this->autoloadGenerator->dump($localRepos, $this->package, $this->installationManager, $this->installationManager->getVendorPath() . '/composer', true);
 
-            if (!$this->skipScripts) {
+            if ($this->runScripts) {
                 // dispatch post event
                 $eventName = $this->update ? ScriptEvents::POST_UPDATE_CMD : ScriptEvents::POST_INSTALL_CMD;
                 $this->eventDispatcher->dispatchCommandEvent($eventName);
@@ -510,14 +510,14 @@ class Installer
     }
 
     /**
-     * skips scripts execution
+     * set whether to run scripts or not
      *
-     * @param boolean $skipScripts
+     * @param boolean $runScripts
      * @return Installer
      */
-    public function setSkipScripts($skipScripts = true)
+    public function setRunScripts($runScripts = true)
     {
-        $this->skipScripts = (boolean) $skipScripts;
+        $this->runScripts = (boolean) $runScripts;
 
         return $this;
     }