Skip to content

Commit

Permalink
feat: 规范化 toolkit adb 路径
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO committed Oct 10, 2024
1 parent bab41e2 commit b57f80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/MaaToolkit/AdbDevice/AdbDeviceFinder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ std::filesystem::path AdbDeviceFinder::get_adb_path(const EmulatorConstantData&
if (!std::filesystem::exists(adb_path)) {
continue;
}
return adb_path;
return std::filesystem::canonical(adb_path);
}
return {};
}
Expand Down

0 comments on commit b57f80d

Please sign in to comment.