Commit 32e84e15 authored by Ben Asher's avatar Ben Asher Committed by GitHub

Merge pull request #6063 from Bersaelor/copyresourcesscript_tv_target

[CopyResourcesScript] add target_device 'tv' for tvOS
parents deda3dce 05723152
......@@ -12,7 +12,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
##### Bug Fixes
* None.
* Add target-device tvOS in copy_resources generator.
[Konrad Feiler](https://github.com/Bersaelor)
[#6052](https://github.com/CocoaPods/CocoaPods/issues/6052)
## 1.1.1 (2016-10-20)
......@@ -48,7 +50,6 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Orta Therox](https://github.com/orta)
[#6049](https://github.com/CocoaPods/CocoaPods/pull/6049)
##### Bug Fixes
* None.
......
......@@ -114,6 +114,9 @@ case "${TARGETED_DEVICE_FAMILY}" in
2)
TARGET_DEVICE_ARGS="--target-device ipad"
;;
3)
TARGET_DEVICE_ARGS="--target-device tv"
;;
*)
TARGET_DEVICE_ARGS="--target-device mac"
;;
......
Subproject commit bd1a7c0f2a71b1168c4743c2d5f4b873a43becbb
Subproject commit f7c00702a648e986ddb11658b374c36c136ca3a0
......@@ -28,10 +28,10 @@
#
# - Have a way to track precisely the evolution of the artifacts (and of the
# UI) produced by CocoaPods (git diff of the after folders).
# - Allow uses to submit pull requests with the environment necessary to
# - Allow users to submit pull requests with the environment necessary to
# reproduce an issue.
# - Have robust tests which don't depend on the programmatic interface of
# CocoaPods. These tests depend only the binary and its arguments an thus are
# CocoaPods. These tests depend only the binary and its arguments and thus are
# suitable for testing CP regardless of the implementation (they could even
# work for an Objective-C one)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment