Fix bit crash

Change-Id: Ie9314b3d52b9262ac6f964ab833bb36eefb4278f
This commit is contained in:
Joe Onorato
2019-03-25 14:30:34 -07:00
parent 22b8fb6906
commit 871cf3ec0e

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;
}