Update function check status for other system
This commit is contained in:
parent
59a2558ccf
commit
b6f3fdbaad
|
|
@ -908,7 +908,12 @@ const checkMultipleRequest = async () => {
|
||||||
if (error) {
|
if (error) {
|
||||||
reject(error);
|
reject(error);
|
||||||
} else {
|
} else {
|
||||||
|
if (stdout !== "") {
|
||||||
resolve(stdout);
|
resolve(stdout);
|
||||||
|
} else {
|
||||||
|
resolve(stderr);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue