small fixes in selftest
This commit is contained in:
parent
9c8e61b203
commit
2fc64df38e
@ -416,7 +416,7 @@ class SelfTest implements IWebsiteModule
|
|||||||
'exception' => null,
|
'exception' => null,
|
||||||
];
|
];
|
||||||
|
|
||||||
$r = exec('git rev-parse --abbrev-ref HEAD');
|
$r = exec('git status 2>&1');
|
||||||
$ok = (strpos($r, 'Your branch is up to date with') !== false) && (strpos($r, 'nothing to commit, working tree clean') !== false);
|
$ok = (strpos($r, 'Your branch is up to date with') !== false) && (strpos($r, 'nothing to commit, working tree clean') !== false);
|
||||||
|
|
||||||
if (!$ok)
|
if (!$ok)
|
||||||
|
@ -281,7 +281,7 @@ function curl_http_request($url)
|
|||||||
$errmsg = curl_error( $ch );
|
$errmsg = curl_error( $ch );
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
|
|
||||||
return [ 'output'=>$output, 'statuscode'=>$httpcode, 'redirect'=>$redirect, 'erronum'=>$errnum, 'errorstr'=>$errmsg ];
|
return [ 'output'=>$output, 'statuscode'=>$httpcode, 'redirect'=>$redirect, 'errnum'=>$errnum, 'errstr'=>$errmsg ];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user