@@ -35,7 +35,7 @@ |
||
| 35 | 35 | $command = $this->getCommand(new Config($output), $mode); |
| 36 | 36 | if ($command) { |
| 37 | 37 | $output->writeln('<info>Setting index mode</info>'); |
| 38 | - $passedCommand = "vagrant ssh -c '". $command ."'"; |
|
| 38 | + $passedCommand = "vagrant ssh -c '".$command."'"; |
|
| 39 | 39 | return new ProcessCommand($passedCommand, $this->_projectPath, $output); |
| 40 | 40 | } |
| 41 | 41 | |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $output->writeln('<info>Getting index status</info>'); |
| 33 | 33 | |
| 34 | 34 | $command = $this->getCommand(new Config($output)); |
| 35 | - $passedCommand = "vagrant ssh -c '". $command ."'"; |
|
| 35 | + $passedCommand = "vagrant ssh -c '".$command."'"; |
|
| 36 | 36 | return new ProcessCommand($passedCommand, $this->_projectPath, $output); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | $command = $this->getCommand(new Config($output), $index); |
| 37 | 37 | if ($command) { |
| 38 | 38 | $output->writeln('<info>Getting index mode</info>'); |
| 39 | - $passedCommand = "vagrant ssh -c '". $command ."'"; |
|
| 39 | + $passedCommand = "vagrant ssh -c '".$command."'"; |
|
| 40 | 40 | return new ProcessCommand($passedCommand, $this->_projectPath, $output); |
| 41 | 41 | } |
| 42 | 42 | |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $output->writeln('<info>Getting index information</info>'); |
| 33 | 33 | |
| 34 | 34 | $command = $this->getCommand(new Config($output)); |
| 35 | - $passedCommand = "vagrant ssh -c '". $command ."'"; |
|
| 35 | + $passedCommand = "vagrant ssh -c '".$command."'"; |
|
| 36 | 36 | return new ProcessCommand($passedCommand, $this->_projectPath, $output); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | $index = $input->getArgument('index'); |
| 36 | 36 | |
| 37 | 37 | $command = $this->getCommand(new Config($output), $index); |
| 38 | - $passedCommand = "vagrant ssh -c '". $command ."'"; |
|
| 38 | + $passedCommand = "vagrant ssh -c '".$command."'"; |
|
| 39 | 39 | return new ProcessCommand($passedCommand, $this->_projectPath, $output); |
| 40 | 40 | } |
| 41 | 41 | |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $output->writeln('<info>Checking cache status</info>'); |
| 33 | 33 | |
| 34 | 34 | $command = $this->getCommand(new Config($output)); |
| 35 | - $passedCommand = "vagrant ssh -c '". $command ."'"; |
|
| 35 | + $passedCommand = "vagrant ssh -c '".$command."'"; |
|
| 36 | 36 | return new ProcessCommand($passedCommand, $this->_projectPath, $output); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $output->writeln('<info>Enabling all cache types</info>'); |
| 33 | 33 | |
| 34 | 34 | $command = $this->getCommand(new Config($output)); |
| 35 | - $passedCommand = "vagrant ssh -c '". $command ."'"; |
|
| 35 | + $passedCommand = "vagrant ssh -c '".$command."'"; |
|
| 36 | 36 | return new ProcessCommand($passedCommand, $this->_projectPath, $output); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $output->writeln('<info>Flushing cache storage</info>'); |
| 33 | 33 | |
| 34 | 34 | $command = $this->getCommand(new Config($output)); |
| 35 | - $passedCommand = "vagrant ssh -c '". $command ."'"; |
|
| 35 | + $passedCommand = "vagrant ssh -c '".$command."'"; |
|
| 36 | 36 | return new ProcessCommand($passedCommand, $this->_projectPath, $output); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $output->writeln('<info>Cleaning all cache types</info>'); |
| 33 | 33 | |
| 34 | 34 | $command = $this->getCommand(new Config($output)); |
| 35 | - $passedCommand = "vagrant ssh -c '". $command ."'"; |
|
| 35 | + $passedCommand = "vagrant ssh -c '".$command."'"; |
|
| 36 | 36 | return new ProcessCommand($passedCommand, $this->_projectPath, $output); |
| 37 | 37 | } |
| 38 | 38 | |