Skip to content

Commit

Permalink
unity 2020 fix [full ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
richardelms committed Jan 13, 2025
1 parent 57b0ed4 commit 6a58c17
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ private void AddXcodePostBuildScript(string pathToBuiltProject, BugsnagSettingsO
string GetMacosXcodeProjectPath(string outputPath)
{
string[] parts = outputPath.Split('/');
string xcprojFile = parts[^1] + ".xcodeproj";
string xcprojFile = parts[parts.Length - 1] + ".xcodeproj";
return outputPath + "/" + xcprojFile + "/project.pbxproj";
}

private string RemoveShellScriptPhase(string project, string guid)
{
// Search for and remove the phase object from the XML. only match the guid followed by the braces
Expand Down

0 comments on commit 6a58c17

Please sign in to comment.