Skip to content

Commit

Permalink
Fix swift build command in Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
yatatsu committed Jul 30, 2024
1 parent 3599b4d commit 0fad8a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ platform :ios do

desc "Build with Package.swift"
lane :build_swiftpm do
sh('swift build -v -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "arm64-apple-ios17.5-simulator"')
sh('swift build -v --sdk `xcrun --sdk iphonesimulator --show-sdk-path` -Xswiftc "-target" -Xswiftc "arm64-apple-ios17.5-simulator"')
end

desc "Build carthage-swift example app"
Expand Down

0 comments on commit 0fad8a6

Please sign in to comment.