shithub: hugo

Download patch

ref: b7bbc28cafffee0b83211a6d7e89be0ccd18f155
parent: c560a7537ab8eb5bf24468f03ec2210008a0c8fa
author: spf13 <[email protected]>
date: Fri Jul 26 05:25:30 EDT 2013

fixing bug with server not finding right path

--- a/main.go
+++ b/main.go
@@ -119,7 +119,7 @@
 
 	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 {