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 73823b0 commit 2b45566Copy full SHA for 2b45566
Assets/Scripts/Editor/BuildProcess/PostBuildCopyEmptyFolders.cs
@@ -12,6 +12,9 @@ public class PostBuildCopyEmptyFolders : MonoBehaviour
12
[PostProcessBuildAttribute(1)]
13
public static void OnPostprocessBuild(BuildTarget target, string pathToBuiltProject)
14
{
15
+ // only for windows
16
+ if (target != BuildTarget.StandaloneWindows) return;
17
+
18
Debug.Log("<color=#00FF00>### POSTBUILD : COPY EMPTY STREAMINGASSETS-FOLDERS ###</color>");
19
Debug.Log("Build done: " + pathToBuiltProject);
20
0 commit comments