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 33bf66f commit 131b01dCopy full SHA for 131b01d
src/Cli/Commands/CheckForUpdate/CheckForUpdateCommand.cs
@@ -17,6 +17,11 @@ public partial class CheckForUpdateCommand : Command
17
18
protected override async ValueTask<ExitCode> InvokeAsync()
19
{
20
+#if DEBUG
21
+ Logger.Info(LogSource.App, "version '16' up to date -kzzkt-");
22
+ return ExitCode.Normal;
23
+#endif
24
+
25
var latest = await GitHubApi.GetLatestGliReleaseAsync(Http);
26
if (latest is null)
27
return ExitCode.ObjectNotFound;
0 commit comments