Commit dcd9d785 authored by Kai Backman's avatar Kai Backman

minor error checking to android launcher

R=dho
CC=golang-dev
https://golang.org/cl/1777041
parent 04cd3813
......@@ -29,7 +29,7 @@ exp ()
rloc=/data/local/tmp/retval
rsize=$(adb shell "ls -l $rloc"|tr -s ' '|cut -d' ' -f4)
rcheck=38
if [ $rsize != $rcheck ] ; then
if [ "$rsize" != "$rcheck" ]; then
# echo "debug: retval size incorrect want $rcheck, got $rsize. uploading"
echo >/tmp/adb.retval '#!/system/bin/sh
"$@"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment