Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mac): make tempFile unique for each call to getProvisioningProfil…
…eAsync (#4269) When building multiple targets on macOS, getProvisioningProfileAsync would create a temporary plist file that was shared between targets. However this method also unlinked the file it created causing the other target, which was running in parallel to crash. This fix makes the temporary file name unique for each call to getProvisioningProfileAsync so when the method unlinks the file, it doesn't cause other targets building in parallel to fail. fixes #4204
- Loading branch information