diff options
author | Joe Onorato <joeo@google.com> | 2019-03-25 14:30:34 -0700 |
---|---|---|
committer | Joe Onorato <joeo@google.com> | 2019-03-25 14:31:06 -0700 |
commit | 871cf3ec0ec2c65ed672ef2f66a971331183f33e (patch) | |
tree | 00b68d96899e9b397e984113d685750fae93a40a /tools/bit | |
parent | 22b8fb6906a6444af275b6e3ababd80dcffa6051 (diff) |
Fix bit crash
Change-Id: Ie9314b3d52b9262ac6f964ab833bb36eefb4278f
Diffstat (limited to 'tools/bit')
-rw-r--r-- | tools/bit/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bit/main.cpp b/tools/bit/main.cpp index 0f555b11d30f..1a91f52bc6cf 100644 --- a/tools/bit/main.cpp +++ b/tools/bit/main.cpp @@ -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; } |