From e3a02926387c05a60835bacbbdbbc8730dbda606 Mon Sep 17 00:00:00 2001 From: sloum Date: Thu, 2 Jul 2020 10:19:53 -0700 Subject: [PATCH] Removes unneeded build tags from darwin and windows files --- http/open_browser_darwin.go | 2 +- http/open_browser_windows.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/http/open_browser_darwin.go b/http/open_browser_darwin.go index dd7da7a..d57a290 100644 --- a/http/open_browser_darwin.go +++ b/http/open_browser_darwin.go @@ -1,4 +1,4 @@ -// +build darwin +// This will build for osx without a build tag based on the filename package http diff --git a/http/open_browser_windows.go b/http/open_browser_windows.go index 0ddf6c7..496d00b 100644 --- a/http/open_browser_windows.go +++ b/http/open_browser_windows.go @@ -1,5 +1,5 @@ -// +build windows - +// This will only build for windows based on the filename +// no build tag required package http import "os/exec"