From ed3015c35014089deb3b9dae03d0997c04f0834c Mon Sep 17 00:00:00 2001 From: Steve Francia Date: Mon, 11 Jan 2016 21:45:05 -0500 Subject: [PATCH] update server to match latest afero --- commands/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/server.go b/commands/server.go index ee4d38a18..875a98ba2 100644 --- a/commands/server.go +++ b/commands/server.go @@ -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)