update server to match latest afero
authorSteve Francia <steve.francia@gmail.com>
Tue, 12 Jan 2016 02:45:05 +0000 (21:45 -0500)
committerSteve Francia <steve.francia@gmail.com>
Tue, 12 Jan 2016 02:45:05 +0000 (21:45 -0500)
commands/server.go

index ee4d38a185951bf4ed3e2086441ed908b33ee11f..875a98ba207401cfc49ec18ab0c7373a55d15619 100644 (file)
@@ -186,7 +186,7 @@ func serve(port int) {
                jww.FEEDBACK.Println("Serving pages from memory")
        }
 
-       httpFs := &afero.HttpFs{SourceFs: hugofs.DestinationFS}
+       httpFs := afero.NewHttpFs(hugofs.DestinationFS)
        fs := filesOnlyFs{httpFs.Dir(helpers.AbsPathify(viper.GetString("PublishDir")))}
        fileserver := http.FileServer(fs)