File tree Expand file tree Collapse file tree 3 files changed +2
-9
lines changed Expand file tree Collapse file tree 3 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -7,17 +7,10 @@ set -o pipefail
7
7
8
8
pod env
9
9
10
- # Work around bug in Xcode 9.3.0 (on Travis) that causes unit tests to crash when targeting
11
- # iOS 8.0. Remove when it's no longer necessary (as well as the `mv` at the end)
12
- sed -i ' .original' ' s/s.ios.deployment_target = "8.0"/s.ios.deployment_target = "9.0"/g' UnzipKit.podspec
13
-
14
10
# Lint the podspec to check for errors. Don't call `pod spec lint`, because we want it to evaluate locally
15
11
16
12
# Using sed to remove logging from output until CocoaPods issue #7577 is implemented and I can use the
17
13
# OS_ACTIVITY_MODE = disable environment variable from the test spec scheme
18
14
pod lib lint --verbose | sed -l ' /xctest\[/d; /^$/d'
19
15
20
- # Restore previous version
21
- mv UnzipKit.podspec.original UnzipKit.podspec
22
-
23
16
. Scripts/unset-travis-tag.sh
Original file line number Diff line number Diff line change 17
17
fi
18
18
19
19
echo -e " \nLinting podspec..."
20
- pod spec lint --fail-fast --verbose
20
+ pod spec lint --fail-fast
21
21
22
22
if [ $? -ne 0 ]; then
23
23
echo -e " \nPodspec failed lint. Run again with --verbose to troubleshoot"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Pod::Spec.new do |s|
7
7
s . author = { "Dov Frankel" => "[email protected] " }
8
8
s . social_media_url = "https://twitter.com/dovfrankel"
9
9
s . source = { :git => "https://github.com/abbeycode/UnzipKit.git" , :tag => "#{ s . version } " }
10
- s . ios . deployment_target = "8 .0"
10
+ s . ios . deployment_target = "9 .0"
11
11
s . osx . deployment_target = "10.9"
12
12
s . requires_arc = 'Source/**/*'
13
13
s . public_header_files = "Source/UnzipKit.h" ,
You can’t perform that action at this time.
0 commit comments