source: Fix failing build on windows - hugo - [fork] hugo port for 9front
(HTM) git clone git@git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit c9223cfd7b0c0763d68807e6179ff017e92e2d60
(DIR) parent 8df88496e24c80298ff8d8d1d36a67974e56a7e2
(HTM) Author: Noah Campbell <noahcampbell@gmail.com>
Date: Tue, 24 Sep 2013 14:36:22 -0700
source: Fix failing build on windows
The +build directive was not being picked up. Apparently needs a space
after the +build line.
Diffstat:
M source/filesystem_unix_test.go | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
(DIR) diff --git 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
//