fix: windows server start

This commit is contained in:
LIAUD Corentin
2024-08-02 10:51:44 +02:00
parent aa22472952
commit fbb65373a8

View File

@@ -49,7 +49,7 @@ impl ADBServer {
if is_local_ip {
// ADB Server is local, we start it if not already running
let child = Command::new("/usr/bin/adb").arg("start-server").spawn();
let child = Command::new("adb").arg("start-server").spawn();
match child {
Ok(mut child) => {
if let Err(e) = child.wait() {