Skip to content

Commit b4fe3df

Browse files
authored
ci: Remove swift_version from Fastfile (#481)
The Fastfile specified a hardcoded Swift version that a) didn't correspond to any swift versions recognized as options by the Swift compiler, and b) conflicted with the swift version specified in our podspec files. Removing that Fastfile version lets podspec linting use the value from the Podspec file instead of the overridden value from the Fastfile
1 parent a6bb418 commit b4fe3df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ platform :ios do
3535

3636
pods.each { |pod|
3737
UI.message("Pushing pod #{pod[:spec]}")
38-
pod_push(path: pod[:spec], allow_warnings: true, swift_version: "5.1")
38+
pod_push(path: pod[:spec], allow_warnings: true)
3939
if pod[:sleep]
4040
UI.message("Sleeping for #{COCOAPODS_PUSH_WAIT_TIME}s")
4141
sleep COCOAPODS_PUSH_WAIT_TIME

0 commit comments

Comments
 (0)