Skip to content

Commit

Permalink
CustomBuildTool fix build hang
Browse files Browse the repository at this point in the history
  • Loading branch information
jxy-s committed Jan 21, 2025
1 parent db65edf commit 78a119a
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions tools/CustomBuildTool/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -979,14 +979,14 @@ public static bool BuildUpdateServerConfig()
}

if (!BuildUploadServerConfig(
buildBuildId,
buildPostSfUrl,
buildPostSfApiKey,
BuildUploadInfo.Item1,
BuildUploadInfo.Item2,
BuildUploadInfo.Item3,
BuildUploadInfo.Item4,
release,
buildBuildId,
buildPostSfUrl,
buildPostSfApiKey,
BuildUploadInfo.Item1,
BuildUploadInfo.Item2,
BuildUploadInfo.Item3,
BuildUploadInfo.Item4,
release,
canary
))
{
Expand Down Expand Up @@ -1682,13 +1682,15 @@ public static void ExportDefinitionsRevert()

Utils.WriteAllText("SystemInformer\\SystemInformer.def", export_backup);
}

break;
}
catch (Exception ex)
{
Program.PrintColorMessage($"[WARN] {ex}", ConsoleColor.Yellow);
}

Thread.Sleep(10000);
Thread.Sleep(3000);
}
}
}
Expand Down

0 comments on commit 78a119a

Please sign in to comment.