Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorNoah Campbell <noahcampbell@gmail.com>2013-09-25 01:36:22 +0400
committerNoah Campbell <noahcampbell@gmail.com>2013-09-25 01:36:22 +0400
commitc9223cfd7b0c0763d68807e6179ff017e92e2d60 (patch)
tree2c8676124bdf323a1c71d53566c61157ac4e15f5 /source
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')
-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
//