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 3a2abf9 commit caffa31Copy full SHA for caffa31
dist/default-build-script/Assets/Editor/UnityBuilderAction/Builder.cs
@@ -66,10 +66,6 @@ public static void BuildProject()
66
var buildProfile = AssetDatabase.LoadAssetAtPath<BuildProfile>(buildProfilePath)
67
?? throw new Exception("Build profile file not found at path: " + buildProfilePath);
68
69
-#if !BUILD_PROFILE_LOADED
70
- throw new Exception("Build profile's define symbol not present before script execution; shouldn't happen");
71
-#endif // BUILD_PROFILE_LOADED
72
-
73
// no need to set active profile, as already set by `-activeBuildProfile` CLI argument
74
// BuildProfile.SetActiveBuildProfile(buildProfile);
75
Debug.Log($"build profile: {buildProfile.name}");
0 commit comments