Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
dmex committed Dec 25, 2024
1 parent e76a7fe commit 2a2522b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tools/CustomBuildTool/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1047,8 +1047,8 @@ public static bool BuildDeployUpdateConfig()

public static GithubRelease BuildDeployUploadGithubConfig()
{
if (!GithubReleases.DeleteRelease(Build.BuildShortVersion))
return null;
//if (!GithubReleases.DeleteRelease(Build.BuildShortVersion))
// return null;

GithubRelease mirror = null;

Expand Down
2 changes: 1 addition & 1 deletion tools/CustomBuildTool/GithubReleases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public static bool DeleteRelease(string Version)
}

{
var result = Task.Run(responseMessage.Content.ReadAsStringAsync).GetAwaiter().GetResult();
var result = responseMessage.Content.ReadAsStringAsync().GetAwaiter().GetResult();

if (string.IsNullOrWhiteSpace(result))
{
Expand Down

0 comments on commit 2a2522b

Please # to comment.