1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-25 21:00:18 +02:00

Removed second argument for Console::log() method. It was removed from this method earlier.

This commit is contained in:
Vyacheslav Pavlov 2016-07-21 17:16:20 +03:00
parent 47e4d7c9a1
commit ec7f5c3bc9

View File

@ -471,7 +471,7 @@ class EncryptTask extends AbstractTask
if (isset($this->mageConfig ['keeptemp'])) {
return;
}
Console::log('Deleting tempory files :', 1);
Console::log('Deleting tempory files :');
$ret1 = Console::executeCommand('rm -Rf ' . $this->ionSource, $out1);
$ret2 = Console::executeCommand('rm ' . $this->projectFile, $out2);
if ($ret1 && $ret2) {