From 27c4cb2c7539014c76232d3869052e82850fe298 Mon Sep 17 00:00:00 2001 From: Gabriel Handford Date: Fri, 6 May 2016 16:22:25 -0700 Subject: Fix windows --- notifier_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifier_windows.go b/notifier_windows.go index 3f6ce09..60a88f0 100644 --- a/notifier_windows.go +++ b/notifier_windows.go @@ -32,7 +32,7 @@ func (n windowsNotifier) DeliverNotification(notification Notification) error { // For testing // toastPath := filepath.Join(os.Getenv("GOPATH"), "src/github.com/keybase/go-osnotify/toaster/toast.exe") - cmd := exec.Command(notification.toastPath, args...) + cmd := exec.Command(notification.ToastPath, args...) if cmd == nil { return fmt.Errorf("No command") } -- cgit v1.2.3