Browse Source

Merge pull request #7429 from albertcansado/fixExtraDS

Shell - delete extra DS on plugin Path
ADmad 10 years ago
parent
commit
fb319a6685
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Shell/Task/ExtractTask.php

+ 1 - 1
src/Shell/Task/ExtractTask.php

@@ -196,7 +196,7 @@ class ExtractTask extends Shell
         if (isset($this->params['output'])) {
             $this->_output = $this->params['output'];
         } elseif (isset($this->params['plugin'])) {
-            $this->_output = $this->_paths[0] . DS . 'Locale';
+            $this->_output = $this->_paths[0] . 'Locale';
         } else {
             $message = "What is the path you would like to output?\n[Q]uit";
             while (true) {