Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Fix missing dependency to importProvisioningProfiles for xcodeArchive (
Browse files Browse the repository at this point in the history
…wooga/atlas-build-unity#140)

> Note Original PR: wooga/atlas-build-unity#140

Description
===========

The dependecy declaration got removed in one of the last patches.
This yields issues when the host system doesn't privide the
provisioning profiles to sign.

Changes
=======

* ![FIX] missing dependency to `importProvisioningProfiles` task for xcodeArchive
  • Loading branch information
Larusso authored Jan 28, 2022
1 parent 75cc393 commit 4cd8bc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ class IOSBuildPlugin implements Plugin<Project> {
}

def xcodeArchive = tasks.create(maybeBaseName(baseName, "xcodeArchive"), XcodeArchive) {
it.dependsOn addKeychain, unlockKeychain, podInstall, buildKeychain
it.dependsOn addKeychain, unlockKeychain, importProvisioningProfiles, podInstall, buildKeychain
it.projectPath.set(project.provider({
def d = project.layout.buildDirectory.get()
if (podInstall.workspace.exists()) {
Expand Down

0 comments on commit 4cd8bc3

Please sign in to comment.