Skip to content

Commit

Permalink
Don't check for updates on uninstall
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzaboxer committed Jan 2, 2023
1 parent a82040a commit 2b21720
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Bloxstrap/Bloxstrap.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<PlatformTarget>AnyCPU</PlatformTarget>
<Platforms>AnyCPU;x86</Platforms>
<ApplicationIcon>Bloxstrap.ico</ApplicationIcon>
<Version>1.6.0</Version>
<FileVersion>1.6.0.0</FileVersion>
<Version>1.6.1</Version>
<FileVersion>1.6.1.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion Bloxstrap/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ static void Main(string[] args)
}

#if !DEBUG
Updater.Check().Wait();
if (!IsUninstall)
Updater.Check().Wait();
#endif

string commandLine = "";
Expand Down

0 comments on commit 2b21720

Please sign in to comment.