Skip to content

Commit

Permalink
weh
Browse files Browse the repository at this point in the history
  • Loading branch information
VasilisThePikachu committed Dec 2, 2023
1 parent 9951ec9 commit 1bac0c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SS14.Watchdog/Components/Updates/UpdateProviderGit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class UpdateProviderGit : UpdateProvider
private readonly ILogger<UpdateProviderGit> _logger;
private readonly string _repoPath;
private readonly IConfiguration _configuration;
private bool _newPackaging = true;
private bool _newPackaging;

public UpdateProviderGit(ServerInstance serverInstanceInstance, UpdateProviderGitConfiguration configuration, ILogger<UpdateProviderGit> logger, IConfiguration config)
{
Expand Down Expand Up @@ -262,6 +262,8 @@ public override async Task<bool> CheckForUpdateAsync(string? currentVersion, Can
await CommandHelperChecked("Failed to build Content Packaging",
_repoPath, "dotnet", new[] { "build", "Content.Packaging","--configuration", "Release", "--no-restore", "/m" }, cancel);
}
else
_newPackaging = false;

if (_hybridACZ)
{
Expand Down

0 comments on commit 1bac0c2

Please sign in to comment.