From b5813b229ee743b9acbb522ba092bd6fd0b13ced Mon Sep 17 00:00:00 2001 From: Raskaro Date: Fri, 2 Aug 2019 10:55:48 +0200 Subject: [PATCH] Fix double .exe-Bug on Windows --- pmctl/snoretoast_windows.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmctl/snoretoast_windows.go b/pmctl/snoretoast_windows.go index 5cec967e..6839edf7 100644 --- a/pmctl/snoretoast_windows.go +++ b/pmctl/snoretoast_windows.go @@ -12,7 +12,7 @@ var showSnoreToast = &cobra.Command{ Short: "Show command to run the Notifier component SnoreToast", RunE: func(cmd *cobra.Command, args []string) error { return show(cmd, &Options{ - Identifier: "notifier/portmaster-snoretoast.exe", + Identifier: "notifier/portmaster-snoretoast", }) }, FParseErrWhitelist: cobra.FParseErrWhitelist{ @@ -26,7 +26,7 @@ var runSnoreToast = &cobra.Command{ Short: "Run the Notifier component SnoreToast", RunE: func(cmd *cobra.Command, args []string) error { return handleRun(cmd, &Options{ - Identifier: "notifier/portmaster-snoretoast.exe", + Identifier: "notifier/portmaster-snoretoast", AllowDownload: false, AllowHidingWindow: true, })