 Chromium Code Reviews
 Chromium Code Reviews Issue 204713003:
  android_run_skia: fix error check  (Closed) 
  Base URL: https://skia.googlesource.com/skia.git@master
    
  
    Issue 204713003:
  android_run_skia: fix error check  (Closed) 
  Base URL: https://skia.googlesource.com/skia.git@master| Index: platform_tools/android/bin/android_run_skia | 
| diff --git a/platform_tools/android/bin/android_run_skia b/platform_tools/android/bin/android_run_skia | 
| index 3c748725718bbcf61d3697e5da9c6ec08d018328..6e303ec4309435313d082acebf19ebd48fcff3e4 100755 | 
| --- a/platform_tools/android/bin/android_run_skia | 
| +++ b/platform_tools/android/bin/android_run_skia | 
| @@ -42,7 +42,7 @@ fi | 
| EXIT_CODE=`$ADB ${DEVICE_SERIAL} shell cat ${STATUS_FILENAME}` | 
| $ADB ${DEVICE_SERIAL} shell rm ${STATUS_FILENAME} | 
| echo "EXIT_CODE is [${EXIT_CODE}]" | 
| -if [ $'0\r' != ${EXIT_CODE} ]; then | 
| +if [ $'0\r' != "${EXIT_CODE}" ]; then | 
| 
epoger
2014/03/20 19:44:40
Now that I added the debugging, I can see the prob
 | 
| exit 1 | 
| fi | 
| exit 0 |