Skip to content

Commit 576d67d

Browse files
freak4pckzaher
authored andcommitted
Fix CI issue for Podspec Lint
1 parent 61ac854 commit 576d67d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.swift-version

-1
This file was deleted.

RxCocoa/Foundation/URLSession+Rx.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ extension Reactive where Base: URLSession {
140140
let interval = Date().timeIntervalSince(d ?? Date())
141141
print(convertURLRequestToCurlCommand(request))
142142
#if os(Linux)
143-
print(convertResponseToString(response, error.flatMap { $0 as? NSError }, interval))
143+
print(convertResponseToString(response, error.flatMap { $0 as NSError }, interval))
144144
#else
145145
print(convertResponseToString(response, error.map { $0 as NSError }, interval))
146146
#endif

scripts/validate-podspec.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function cleanup {
1616
trap cleanup EXIT
1717

1818
if [[ ! -z "${TRAVIS}" ]]; then
19-
gem install cocoapods --pre --no-rdoc --no-ri --no-document --quiet;
19+
gem install cocoapods --pre --no-document --quiet;
2020
pod repo update;
2121
fi;
2222

0 commit comments

Comments
 (0)