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 ac81423 commit 186d571Copy full SHA for 186d571
src/Packages/Passport/Editor/PassportPostprocess.cs
@@ -48,6 +48,12 @@ public void OnPostprocessBuild(BuildReport report)
48
else if (buildTarget == BuildTarget.iOS)
49
{
50
buildDataPath = Path.GetFullPath($"{buildOutputPath}/{buildAppName}/Data/");
51
+ Debug.Log($"iOS buildDataPath: {buildDataPath}");
52
+ if (!Directory.Exists(buildDataPath))
53
+ {
54
+ buildDataPath = Path.GetFullPath($"{buildFullOutputPath}/Data/");
55
+ Debug.Log($"iOS buildDataPath 2: {buildDataPath}");
56
+ }
57
}
58
59
// Copy passport files to data directory for these target
@@ -178,6 +184,6 @@ private void CopyFilesTo(string destinationPath)
178
184
179
185
180
186
181
-}
182
-
187
+}
188
+
183
189
#endif
0 commit comments