1cb93a386Sopenharmony_ci#!/bin/bash 2cb93a386Sopenharmony_ci# 3cb93a386Sopenharmony_ci############################################################################### 4cb93a386Sopenharmony_ci# Copyright 2015 Google Inc. 5cb93a386Sopenharmony_ci# 6cb93a386Sopenharmony_ci# Use of this source code is governed by a BSD-style license that can be 7cb93a386Sopenharmony_ci# found in the LICENSE file. 8cb93a386Sopenharmony_ci############################################################################### 9cb93a386Sopenharmony_ci# 10cb93a386Sopenharmony_ci# Mounts the iOS device locally. See the value of IOS_MOUNT_POINT in 11cb93a386Sopenharmony_ci# ios_setup.sh for the exact location. 12cb93a386Sopenharmony_ci# 13cb93a386Sopenharmony_ciset -x -e 14cb93a386Sopenharmony_ci 15cb93a386Sopenharmony_ciSCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 16cb93a386Sopenharmony_cisource $SCRIPT_DIR/ios_setup.sh 17cb93a386Sopenharmony_ci 18cb93a386Sopenharmony_ciios_mount 19