Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: tools-webrtc/android/adb_shell.sh

Issue 2864213004: Rename tools-webrtc -> tools_webrtc (Closed)
Patch Set: REmove symlink Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools-webrtc/android/AndroidManifest.xml ('k') | tools-webrtc/android/build_aar.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools-webrtc/android/adb_shell.sh
diff --git a/tools-webrtc/android/adb_shell.sh b/tools-webrtc/android/adb_shell.sh
deleted file mode 100755
index e2d4f9187e35e24d2c278beb65e233222fb55206..0000000000000000000000000000000000000000
--- a/tools-webrtc/android/adb_shell.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
-#
-# Use of this source code is governed by a BSD-style license
-# that can be found in the LICENSE file in the root of the source
-# tree. An additional intellectual property rights grant can be found
-# in the file PATENTS. All contributing project authors may
-# be found in the AUTHORS file in the root of the source tree.
-
-# 'adb shell' always returns "0" regardless of executable return code.
-# This handy script will return executable return code to shell which
-# can be used by buildbots.
-
-adb_shell () {
- local RET ADB_LOG
- ADB_LOG=$(mktemp "${TMPDIR:-/tmp}/adb-XXXXXXXX")
- adb "$1" "$2" shell "$3" "$4" ";" echo \$? | tee "$ADB_LOG"
- sed -i -e 's![[:cntrl:]]!!g' "$ADB_LOG" # Remove \r.
- RET=$(sed -e '$!d' "$ADB_LOG") # Last line contains status code.
- rm -f "$ADB_LOG"
- return $RET
-}
« no previous file with comments | « tools-webrtc/android/AndroidManifest.xml ('k') | tools-webrtc/android/build_aar.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698