Completed
Push — master ( 9a521b...4c6d2b )
by Michael
06:44 queued 04:44
created
src/Commands/UpdateCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,12 +31,12 @@
 block discarded – undo
31 31
 		$this->getApplication()->out('<info>Updating server to git HEAD</info>');
32 32
 
33 33
 		// Pull from remote repo
34
-		$this->runCommand('cd ' . APPROOT . ' && git pull 2>&1');
34
+		$this->runCommand('cd '.APPROOT.' && git pull 2>&1');
35 35
 
36 36
 		$this->getApplication()->out('<info>Updating Composer resources</info>');
37 37
 
38 38
 		// Run Composer install
39
-		$this->runCommand('cd ' . APPROOT . ' && composer install --no-dev -o -a 2>&1');
39
+		$this->runCommand('cd '.APPROOT.' && composer install --no-dev -o -a 2>&1');
40 40
 
41 41
 		$this->getApplication()->out('<info>Update complete</info>');
42 42
 
Please login to merge, or discard this patch.