From c9223cfd7b0c0763d68807e6179ff017e92e2d60 Mon Sep 17 00:00:00 2001 From: Noah Campbell Date: Tue, 24 Sep 2013 14:36:22 -0700 Subject: [PATCH] source: Fix failing build on windows The +build directive was not being picked up. Apparently needs a space after the +build line. --- source/filesystem_unix_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/filesystem_unix_test.go b/source/filesystem_unix_test.go index fffc0c3b3..60b7b0a25 100644 --- a/source/filesystem_unix_test.go +++ b/source/filesystem_unix_test.go @@ -1,4 +1,5 @@ -// +build linux,darwin +// +build linux darwin !windows + package source //