We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66dce1c commit 685bd73Copy full SHA for 685bd73
Assets/SequenceSDK/Editor/TestflightUploadPostBuildScript.cs
@@ -36,7 +36,8 @@ public void OnPostprocessBuild(BuildReport report)
36
File.WriteAllText(keyPath, privateKey);
37
38
var cmd = $"xcrun altool --upload-app -f \"{ipaFile}\" -t ios --apiKey {keyId} --apiIssuer {issuerId}";
39
- RunCommand("/bin/bash", $"ls {ipaPath}");
+ RunCommand("/bin/bash", $"-c \"ls -l {ipaPath}\"");
40
+ RunCommand("/bin/bash", $"-c \"find '{exportPath}/..' -name '*.ipa'\"");
41
RunCommand("/bin/bash", $"-c \"{cmd}\"");
42
}
43
0 commit comments