Skip to content

Commit

Permalink
ci: fix trailing newline in iphoneos sdk version
Browse files Browse the repository at this point in the history
output
  • Loading branch information
BlueGreenMagick committed Jan 8, 2025
1 parent bd216c2 commit cc3dac7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion safari/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ platform :ios do
lane :beta do
setup_ci if ENV['CI']
certificates
ios_sdk_version = sh("xcrun", "--sdk", "iphoneos", "--show-sdk-version")
ios_sdk_version = sh('printf "%s" "$(xcrun --sdk iphoneos --show-sdk-version)"')
build_app(
scheme: "Yomikiri (iOS)",
verbose: true,
Expand Down Expand Up @@ -63,3 +63,6 @@ platform :ios do
match(readonly: ENV['CI'])
end
end



0 comments on commit cc3dac7

Please sign in to comment.