From f320de5bc70aeb84f161f7d8dd93c7d89a34118d Mon Sep 17 00:00:00 2001 From: Richard Wilkes Date: Mon, 4 Sep 2023 17:02:30 -0700 Subject: [PATCH] Fix typo for linux --- ux/platform_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ux/platform_linux.go b/ux/platform_linux.go index be5c17e7..91865b17 100644 --- a/ux/platform_linux.go +++ b/ux/platform_linux.go @@ -42,7 +42,7 @@ func performPlatformStartup() { return } if filepath.Base(exePath) != cmdline.AppCmdName { - errs.Log(errs.Log("skipping desktop integration"), "name", filepath.Base(exePath), "expected", cmdline.AppCmdName) + errs.Log(errs.New("skipping desktop integration"), "name", filepath.Base(exePath), "expected", cmdline.AppCmdName) return } if err = installDesktopIcons(); err != nil {