Skip to content
This repository has been archived by the owner on Jul 23, 2021. It is now read-only.

Commit

Permalink
Merge pull request #651 from QoboLtd/project-template-update
Browse files Browse the repository at this point in the history
Merged project-template v9.6.2
  • Loading branch information
georgeconstantinou committed Oct 3, 2018
2 parents f46103e + 2c8be9b commit 170273d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build/Robo/Command/App/App.php
Expand Up @@ -2,7 +2,8 @@

namespace Qobo\Robo\Command\App;

use \Qobo\Robo\AbstractCommand;
use Qobo\Robo\AbstractCommand;
use Qobo\Robo\Runner;

class App extends AbstractCommand
{
Expand Down Expand Up @@ -573,6 +574,8 @@ protected function uninstallCron($env)
*/
protected function setPathPermissions($env)
{
$lastError = Runner::getLastError();

$dirMode = $this->getValue('CHMOD_DIR_MODE', $env);
$fileMode = $this->getValue('CHMOD_FILE_MODE', $env);

Expand Down Expand Up @@ -649,6 +652,8 @@ protected function setPathPermissions($env)
}
}

Runner::setLastError($lastError);

return true;
}
}

0 comments on commit 170273d

Please sign in to comment.