From 7732381a3336157157df2ca20e1f10d76a0498d1 Mon Sep 17 00:00:00 2001 From: sloum Date: Sat, 8 May 2021 14:58:45 -0700 Subject: [PATCH] Fixes package naming issue from copied packages --- open_browser_darwin.go | 2 +- open_browser_other.go | 2 +- open_browser_windows.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"