mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
92190727d1
Summary: **Motivation** Remove duplicated lines in objc-test-ios.sh and objc-test-tvos.sh **Test plan** Travis CI should continue to work as before. Closes https://github.com/facebook/react-native/pull/13173 Differential Revision: D4812177 Pulled By: hramos fbshipit-source-id: 40afe0beab896d741f607f4841df7e9b42f4c17d
16 lines
256 B
Bash
Executable File
16 lines
256 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
SCRIPTS=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
ROOT=$(dirname "$SCRIPTS")
|
|
|
|
cd "$ROOT"
|
|
|
|
SCHEME="UIExplorer"
|
|
SDK="iphonesimulator"
|
|
DESTINATION="platform=iOS Simulator,name=iPhone 5s,OS=10.1"
|
|
TEST="test"
|
|
|
|
. ./scripts/objc-test.sh
|
|
|