From: Steve Francia Date: Tue, 12 Jan 2016 02:45:05 +0000 (-0500) Subject: update server to match latest afero X-Git-Tag: v0.16~433 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ed3015c3;p=brevno-suite%2Fhugo update server to match latest afero --- diff --git a/commands/server.go b/commands/server.go index ee4d38a1..875a98ba 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)