Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Dec 9, 2024
1 parent cd616b3 commit 36b1182
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ func loadFirebaseSDKVersion() throws -> String {
}

func loadPubspecVersions() throws -> (packageVersion: String, firebaseCoreVersion: String) {
let pubspecPath = NSString.path(withComponents: [performanceDirectory, "..", "..", "pubspec.yaml"])
let pubspecPath = NSString.path(withComponents: [
performanceDirectory,
"..",
"..",
"pubspec.yaml",
])
do {
let yamlString = try String(contentsOfFile: pubspecPath, encoding: .utf8)
let lines = yamlString.split(separator: "\n")
Expand Down

0 comments on commit 36b1182

Please sign in to comment.