Revert "Disable render-to-memory on Windows"
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 19 Nov 2015 18:48:40 +0000 (19:48 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 19 Nov 2015 18:48:40 +0000 (19:48 +0100)
This reverts commit 91e0c2b1feb2a7a1b074784a41249139b2fae975.

This should now work.

commands/server.go

index 07b4e8e78d5594fe67139dcde53f82980626fe1a..7c0ef78ddd25b4186448278a864e7b9f11b54d96 100644 (file)
@@ -137,11 +137,6 @@ func server(cmd *cobra.Command, args []string) {
                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)