From 1e1d78329e612ad368377b6c6a6a4079d99556af Mon Sep 17 00:00:00 2001 From: James Nugent Date: Wed, 30 Dec 2015 17:37:24 -0500 Subject: [PATCH] core: use !windows instead of a list of unixes This allows building on a wider variety of unix-a-likes without needing to list them all explicitly - Windows is the special case here! --- config_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_unix.go b/config_unix.go index 69d76278af..4694d5114d 100644 --- a/config_unix.go +++ b/config_unix.go @@ -1,4 +1,4 @@ -// +build darwin freebsd linux netbsd openbsd +// +build !windows package main