URI: 
       Merge pull request #52 from rozza/StaticSync - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 00839567c764ee047ede5ead8fb1f7bcbd8b03fb
   DIR parent 35b35a700488fbe25475cd62968f2d76c1661d16
  HTML Author: Steve Francia <steve.francia@gmail.com>
       Date:   Tue, 20 Aug 2013 20:55:56 -0700
       
       Merge pull request #52 from rozza/StaticSync
       
       Static changes shouldn't be destructive to existing files
       Diffstat:
         M main.go                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/main.go b/main.go
       @@ -132,7 +132,7 @@ func main() {
        
        func copyStatic(config *hugolib.Config) error {
                // Copy Static to Destination
       -        return fsync.SyncDel(config.GetAbsPath(config.PublishDir+"/"), config.GetAbsPath(config.StaticDir+"/"))
       +        return fsync.Sync(config.GetAbsPath(config.PublishDir+"/"), config.GetAbsPath(config.StaticDir+"/"))
        }
        
        func serve(port string, config *hugolib.Config) {