Skip to content

Commit

Permalink
Reformat TestFlight script
Browse files Browse the repository at this point in the history
  • Loading branch information
saagarjha committed May 29, 2024
1 parent f67826b commit d458ab8
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions Release/send_to_testflight.swift
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ struct API {
let next = try await getRequest(endpoint: endpoint, parsing: Response<T>.self)
result.append(contentsOf: next.data)
nextEndpoint = next.links.next
}
}
return result
}
}
Expand Down Expand Up @@ -331,12 +331,14 @@ for build in builds {
print("\(version.attributes.platform.rawValue)")
}

let macOSBuild = builds[buildPlatforms.firstIndex {
$0.attributes.platform == .MAC_OS
}!]
let visionOSBuild = builds[buildPlatforms.firstIndex {
$0.attributes.platform == .VISION_OS
}!]
let macOSBuild = builds[
buildPlatforms.firstIndex {
$0.attributes.platform == .MAC_OS
}!]
let visionOSBuild = builds[
buildPlatforms.firstIndex {
$0.attributes.platform == .VISION_OS
}!]

print("Waiting for builds to process...")

Expand Down

0 comments on commit d458ab8

Please sign in to comment.