| Index: platform_tools/ios/bin/ios_push_if_needed
|
| diff --git a/platform_tools/ios/bin/ios_push_if_needed b/platform_tools/ios/bin/ios_push_if_needed
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..b7627a7961f4a7565fc157c7853ea08b15cabee1
|
| --- /dev/null
|
| +++ b/platform_tools/ios/bin/ios_push_if_needed
|
| @@ -0,0 +1,12 @@
|
| +#!/bin/bash
|
| +
|
| +# Fail-fast if anything in the script fails.
|
| +#set -e
|
| +
|
| +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
| +source $SCRIPT_DIR/ios_setup.sh
|
| +
|
| +HOST_PATH=$1
|
| +DEVICE_PATH=$2
|
| +
|
| +ios_push $HOST_PATH $DEVICE_PATH
|
|
|