From 83c48593ffbec0292410b53b562b14e8a26ebdea Mon Sep 17 00:00:00 2001 From: Dongw Date: Tue, 10 Oct 2023 12:42:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E4=B8=8D=E8=83=BD?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE=E5=90=AF=E5=8A=A8B=E6=9C=8D=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/cli/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/cli/main.cpp b/source/cli/main.cpp index f500b702..ec43be5c 100644 --- a/source/cli/main.cpp +++ b/source/cli/main.cpp @@ -301,7 +301,7 @@ bool proc_argv(int argc, char** argv, bool& debug, std::string& adb, std::string debug = confing.get("debug", false); adb = confing["adb"].as_string(); adb_address = confing["adb_address"].as_string(); - client_type = confing.get("client", client_type); + client_type = confing.get("client_type", client_type); int index = 1; for (auto& task : confing["tasks"].as_array()) {