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

Unified Diff: platform_tools/ios/bin/ios_pull_if_needed

Issue 1085583006: iOS platform scripts to be used by buildbots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Addressed comments and rebase Created 5 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
Index: platform_tools/ios/bin/ios_pull_if_needed
diff --git a/platform_tools/ios/bin/ios_pull_if_needed b/platform_tools/ios/bin/ios_pull_if_needed
index 46ad89437ecca76a01183c73326096624922fb35..304678ad344f45c472708ed3805d82ffc544a9ac 100755
--- a/platform_tools/ios/bin/ios_pull_if_needed
+++ b/platform_tools/ios/bin/ios_pull_if_needed
@@ -9,10 +9,12 @@
#
# Pull the given file/directory off the device.
#
+set -x -e
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $SCRIPT_DIR/ios_setup.sh
-HOST_PATH=$1
-DEVICE_PATH=$2
+DEVICE_PATH=$1
+HOST_PATH=$2
-ios_pull $HOST_PATH $DEVICE_PATH
+ios_pull $DEVICE_PATH $HOST_PATH

Powered by Google App Engine
This is Rietveld 408576698