ref: 3f5ddd5242bd8aee2f2aa85c44fa77184e9a61c0
parent: 91e0c2b1feb2a7a1b074784a41249139b2fae975
	author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
	date: Thu Nov 19 14:48:40 EST 2015
	
Revert "Disable render-to-memory on Windows" This reverts commit 91e0c2b1feb2a7a1b074784a41249139b2fae975. This should now work.
--- a/commands/server.go
+++ b/commands/server.go
@@ -137,11 +137,6 @@
renderToDisk = true
}
-	if !renderToDisk && runtime.GOOS == "windows" {-		jww.ERROR.Println("Render to memory currently not supported in Windows, see https://github.com/spf13/hugo/issues/1586")- renderToDisk = true
- }
-
// Hugo writes the output to memory instead of the disk
 	if !renderToDisk {hugofs.DestinationFS = new(afero.MemMapFs)
--
⑨