Skip to content

Commit

Permalink
Fix string interoplation
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 committed Sep 16, 2023
1 parent 2fea343 commit 7e9c835
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ReleaseTooling/Sources/ZipBuilder/ModuleMapBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ struct ModuleMapBuilder {
"""

if module == "FirebaseFirestore" {
content += " link framework " + "BoringSSL-GRPC" + "\n"
content += " link framework " + "gRPC-Core" + "\n"
content += " link framework " + "gRPC-C++" + "\n"
content += """
link framework "BoringSSL-GRPC"
link framework "gRPC-Core"
link framework "gRPC-C++"
"""
}

for framework in frameworks.sorted() {
Expand Down

0 comments on commit 7e9c835

Please sign in to comment.