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

Commit 7c3fc84f authored by Yurii Zubrytskyi's avatar Yurii Zubrytskyi Committed by Automerger Merge Worker
Browse files

Merge changes from topic "incremental-default" into rvc-dev am: 3db3d6f8

Change-Id: I05fe1ae17ca8820a75cc04f39354cc51ef508e6c
parents 43b13ded 3db3d6f8
Loading
Loading
Loading
Loading
+6 −1
Original line number Original line Diff line number Diff line
@@ -325,7 +325,12 @@ static int install_app_incremental(int argc, const char** argv, bool wait, bool
        }
        }
    }
    }


    if (first_apk == -1) error_exit("Need at least one APK file on command line");
    if (first_apk == -1) {
        if (!silent) {
            fprintf(stderr, "error: need at least one APK file on command line\n");
        }
        return -1;
    }


    auto files = incremental::Files{argv + first_apk, argv + last_apk + 1};
    auto files = incremental::Files{argv + first_apk, argv + last_apk + 1};
    if (silent) {
    if (silent) {