Merge "Fix bit crash"

This commit is contained in:
Joe Onorato
2019-03-26 03:56:51 +00:00
committed by Android (Google) Code Review

View File

@@ -856,7 +856,7 @@ run_phases(vector<Target*> targets, const Options& options)
// TODO: if (!apk.file.fileInfo.exists || apk.file.HasChanged())
err = run_adb("shell", "mkdir", "-p", dir.c_str(), NULL);
check_error(err);
err = run_adb("push", pushed.file.filename.c_str(), pushed.dest.c_str());
err = run_adb("push", pushed.file.filename.c_str(), pushed.dest.c_str(), NULL);
check_error(err);
// pushed.installed = true;
}