diff options
author | Noah Campbell <[email protected]> | 2013-09-24 14:36:22 -0700 |
---|---|---|
committer | Noah Campbell <[email protected]> | 2013-09-24 14:36:22 -0700 |
commit | c9223cfd7b0c0763d68807e6179ff017e92e2d60 (patch) | |
tree | 2c8676124bdf323a1c71d53566c61157ac4e15f5 /source | |
parent | 8df88496e24c80298ff8d8d1d36a67974e56a7e2 (diff) | |
download | hugo-c9223cfd7b0c0763d68807e6179ff017e92e2d60.tar.gz hugo-c9223cfd7b0c0763d68807e6179ff017e92e2d60.zip |
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.go | 3 |
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 // |