summaryrefslogtreecommitdiffstats
path: root/source/filesystem_unix_test.go
diff options
context:
space:
mode:
authorNoah Campbell <noahcampbell@gmail.com>2013-09-24 14:36:22 -0700
committerNoah Campbell <noahcampbell@gmail.com>2013-09-24 14:36:22 -0700
commitc9223cfd7b0c0763d68807e6179ff017e92e2d60 (patch)
tree2c8676124bdf323a1c71d53566c61157ac4e15f5 /source/filesystem_unix_test.go
parent8df88496e24c80298ff8d8d1d36a67974e56a7e2 (diff)
source: Fix failing build on windows
The +build directive was not being picked up. Apparently needs a space after the +build line.
Diffstat (limited to 'source/filesystem_unix_test.go')
-rw-r--r--source/filesystem_unix_test.go3
1 files changed, 2 insertions, 1 deletions
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
//