Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d5000724 authored by Songchun Fan's avatar Songchun Fan Committed by Gerrit Code Review
Browse files

Merge "[adb] fix signature check"

parents e473c89c c935d0c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ static unique_fd start_install(const Files& files, const Args& passthrough_args,
        }

        auto [signature_fd, signature] = read_and_encode_signature(st.st_size, file, silent);
        if (signature_fd.ok() && signature.empty()) {
        if (!signature_fd.ok() || signature.empty()) {
            return {};
        }