diff --git a/open_browser_darwin.go b/open_browser_darwin.go index d57a290..a568103 100644 --- a/open_browser_darwin.go +++ b/open_browser_darwin.go @@ -1,6 +1,6 @@ // This will build for osx without a build tag based on the filename -package http +package main import "os/exec" diff --git a/open_browser_other.go b/open_browser_other.go index 2f74d22..9f874b8 100644 --- a/open_browser_other.go +++ b/open_browser_other.go @@ -1,6 +1,6 @@ // +build !darwin,!windows -package http +package main import ( "fmt" diff --git a/open_browser_windows.go b/open_browser_windows.go index 496d00b..c5e2c84 100644 --- a/open_browser_windows.go +++ b/open_browser_windows.go @@ -1,6 +1,6 @@ // This will only build for windows based on the filename // no build tag required -package http +package main import "os/exec"