check_deploy mod
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-01-09 12:02:52 +01:00
parent d58b681918
commit c80944b5b6
3 changed files with 6 additions and 6 deletions

View File

@@ -28,7 +28,7 @@ function check_deploy($application) { // is an application deploy in progress
if (!empty($arr)) return "deploy-".$application; // deploy in progress install has started
else {
$arr = check_response("deploy-".$application); // application install in progress PID exists
if (!empty($arr)) return "deploy-".$application;
if (!empty($arr)) return $arr;
else return 0;
}
}