aboutsummaryrefslogtreecommitdiffstats
path: root/notifier_windows.go
diff options
context:
space:
mode:
authorGabriel Handford2016-05-06 16:22:25 -0700
committerGabriel Handford2016-05-06 16:22:25 -0700
commit27c4cb2c7539014c76232d3869052e82850fe298 (patch)
treec1d5035104438389a40354a3b633c8440522213f /notifier_windows.go
parent12878f6400420fa6c988187c8942799b73c31e6c (diff)
downloadgo-notifier-27c4cb2c7539014c76232d3869052e82850fe298.tar.bz2
Fix windows
Diffstat (limited to 'notifier_windows.go')
-rw-r--r--notifier_windows.go2
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")
}