fixing bug with server not finding right path

This commit is contained in:
spf13 2013-07-26 09:25:30 -04:00
parent c560a7537a
commit b7bbc28caf

View file

@ -119,7 +119,7 @@ func serve(port string, config *hugolib.Config) {
fmt.Println("Web Server is available at http://localhost:" + port)
fmt.Println("Press ctrl+c to stop")
panic(http.ListenAndServe(":"+port, http.FileServer(http.Dir(config.PublishDir))))
panic(http.ListenAndServe(":"+port, http.FileServer(http.Dir(config.GetAbsPath(config.PublishDir)))))
}
func buildSite(config *hugolib.Config) *hugolib.Site {