Skip to content
Snippets Groups Projects
Commit 829a00f8 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

add new line

parent 5473938a
No related branches found
No related tags found
No related merge requests found
...@@ -3,3 +3,4 @@ external/ ...@@ -3,3 +3,4 @@ external/
build build
src/include_checks.php src/include_checks.php
src/amcli__build.php src/amcli__build.php
build_postactions.php
...@@ -238,7 +238,7 @@ if (isset($ARGS['-h']) || isset($ARGS['--help'])) { ...@@ -238,7 +238,7 @@ if (isset($ARGS['-h']) || isset($ARGS['--help'])) {
// show builtin checks // show builtin checks
if (isset($ARGS['-l']) || isset($ARGS['--list'])) { if (isset($ARGS['-l']) || isset($ARGS['--list'])) {
_wd("Showing checks"); _wd("Showing checks");
echo $sPreSpace . implode("\n$sPreSpace", $oMonitor->listChecks()); echo $sPreSpace . implode("\n$sPreSpace", $oMonitor->listChecks())."\n";
exit(0); exit(0);
} }
...@@ -247,7 +247,7 @@ if (isset($ARGS['-m']) || isset($ARGS['--modules'])) { ...@@ -247,7 +247,7 @@ if (isset($ARGS['-m']) || isset($ARGS['--modules'])) {
_wd("Showing php modules"); _wd("Showing php modules");
$aMods = get_loaded_extensions(); $aMods = get_loaded_extensions();
sort($aMods); sort($aMods);
echo $sPreSpace . implode("\n$sPreSpace", $aMods); echo $sPreSpace . implode("\n$sPreSpace", $aMods)."\n";
exit(0); exit(0);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment