We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5829092 commit af5eec2Copy full SHA for af5eec2
1 file changed
.github/ci/build/ios_modify_podfile.py
@@ -4,6 +4,8 @@ def modify_podfile(path: str):
4
with open(path, 'r', encoding='utf-8') as f:
5
content = f.read()
6
content = content.replace("pod 'sdk', :path => 'sdk.podspec'", "pod 'sdk', :path => '../../sdk.podspec'")
7
+ content = content.replace("pod 'Agora", "#pod 'Agora")
8
+
9
f.close()
10
with open(path, 'w', encoding='utf-8') as fw:
11
fw.write(content)
0 commit comments