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 9a439f3 commit 13af3a2Copy full SHA for 13af3a2
Assets/Scripts/Editor/UnityPackageScripts.cs
@@ -228,6 +228,8 @@ private static void EndUpdate(int returnValue)
228
#if UNITY_2020_1_OR_NEWER
229
Progress.Finish(ProgressId, returnValue == 0 ? Progress.Status.Succeeded : Progress.Status.Failed);
230
#endif
231
+ Debug.Log($"Updating unity packages finished with exit code {returnValue}");
232
+
233
if (Application.isBatchMode)
234
{
235
EditorApplication.Exit(returnValue);
@@ -238,8 +240,6 @@ private static void EndUpdate(int returnValue)
238
240
239
241
throw new Exception($"BuildScript ended with non-zero exitCode: {returnValue}");
242
}
-
- Debug.Log($"Successfully updated packages");
243
244
245
0 commit comments