diff options
| author | Gabriel Handford | 2016-05-06 16:22:25 -0700 |
|---|---|---|
| committer | Gabriel Handford | 2016-05-06 16:22:25 -0700 |
| commit | 27c4cb2c7539014c76232d3869052e82850fe298 (patch) | |
| tree | c1d5035104438389a40354a3b633c8440522213f | |
| parent | 12878f6400420fa6c988187c8942799b73c31e6c (diff) | |
| download | go-notifier-27c4cb2c7539014c76232d3869052e82850fe298.tar.bz2 | |
Fix windows
| -rw-r--r-- | notifier_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
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") } |
