Index: build/android/adb_kill_content_shell |
diff --git a/build/android/adb_kill_content_shell b/build/android/adb_kill_content_shell |
index 64ab5b11fb0408b118f98bcfcb54d5e9a15e656d..e379dd47149d145378d9a70253ff41db9092af19 100755 |
--- a/build/android/adb_kill_content_shell |
+++ b/build/android/adb_kill_content_shell |
@@ -12,7 +12,7 @@ SHELL_PID_LINES=$(adb shell ps | grep ' org.chromium.content_shell_apk') |
VAL=$(echo "$SHELL_PID_LINES" | wc -l) |
if [ $VAL -lt 1 ] ; then |
echo "Not running Content shell." |
-else |
+else |
SHELL_PID=$(echo $SHELL_PID_LINES | awk '{print $2}') |
if [ "$SHELL_PID" != "" ] ; then |
set -x |