Update function check status for other system

This commit is contained in:
joseph le 2023-10-12 08:53:45 +07:00
parent 59a2558ccf
commit b6f3fdbaad
1 changed files with 6 additions and 1 deletions

View File

@ -908,7 +908,12 @@ const checkMultipleRequest = async () => {
if (error) {
reject(error);
} else {
resolve(stdout);
if (stdout !== "") {
resolve(stdout);
} else {
resolve(stderr);
}
}
});
});