From a346d927dc7edd1147dd606c5605f84f274a477f Mon Sep 17 00:00:00 2001 From: Terrance Miller Date: Fri, 25 Aug 2023 09:28:25 -0500 Subject: [PATCH] double quotes around cocoapods curl header --- .../main/kotlin/dependencymanager/CocoapodsDependencyManager.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmmbridge/src/main/kotlin/dependencymanager/CocoapodsDependencyManager.kt b/kmmbridge/src/main/kotlin/dependencymanager/CocoapodsDependencyManager.kt index aa8b824b..5631e88e 100644 --- a/kmmbridge/src/main/kotlin/dependencymanager/CocoapodsDependencyManager.kt +++ b/kmmbridge/src/main/kotlin/dependencymanager/CocoapodsDependencyManager.kt @@ -140,7 +140,7 @@ private fun Project.generatePodspec(outputFile: File) = with(kotlin.cocoapods) { | spec.source = { | :http => '${url}', | :type => 'zip', - | :headers => ['Accept: application/octet-stream'] + | :headers => ["'Accept: application/octet-stream'"] | } | spec.authors = ${authors.orEmpty().surroundWithSingleQuotesIfNeeded()} | spec.license = ${license.orEmpty().surroundWithSingleQuotesIfNeeded()}