OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash | |
2 | |
3 # Fail-fast if anything in the script fails. | |
4 set -e | |
5 | |
6 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
7 source $SCRIPT_DIR/ios_setup.sh | |
8 | |
9 if [[ "$#" -ne "1" ]]; then | |
10 echo "Usage: ios_path_exists <path_in_Documents_folder_of_ios_device>" | |
11 exit 1 | |
12 fi | |
13 | |
14 RET=ios_path_exists $1 | |
15 exit $RET | |
OLD | NEW |