Merge pull request #4843 from remicollet/issue-diagphar
skip diag. which are only for phar modepull/4964/head
commit
cd3c3ac56d
|
@ -134,11 +134,13 @@ EOT
|
||||||
$io->write('Checking disk free space: ', false);
|
$io->write('Checking disk free space: ', false);
|
||||||
$this->outputResult($this->checkDiskSpace($config));
|
$this->outputResult($this->checkDiskSpace($config));
|
||||||
|
|
||||||
$io->write('Checking pubkeys: ', false);
|
if ('phar:' === substr(__FILE__, 0, 5)) {
|
||||||
$this->outputResult($this->checkPubKeys($config));
|
$io->write('Checking pubkeys: ', false);
|
||||||
|
$this->outputResult($this->checkPubKeys($config));
|
||||||
|
|
||||||
$io->write('Checking composer version: ', false);
|
$io->write('Checking composer version: ', false);
|
||||||
$this->outputResult($this->checkVersion());
|
$this->outputResult($this->checkVersion());
|
||||||
|
}
|
||||||
|
|
||||||
return $this->failures;
|
return $this->failures;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue