add support for fsync's noTime flag
authorJoel Scoble <joel.scoble@outlook.com>
Thu, 6 Nov 2014 02:13:22 +0000 (20:13 -0600)
committerspf13 <steve.francia@gmail.com>
Fri, 14 Nov 2014 03:32:27 +0000 (22:32 -0500)
commands/hugo.go

index 838fd94a4514a90e878144b05a7187b20aa1b5e8..7676fa4f1243b5347dc0944e68d182ef243a5fd7 100644 (file)
@@ -52,7 +52,7 @@ Complete documentation is available at http://gohugo.io`,
 
 var hugoCmdV *cobra.Command
 
-var BuildWatch, Draft, Future, UglyUrls, Verbose, Logging, VerboseLog, DisableRSS, DisableSitemap, PluralizeListTitles bool
+var BuildWatch, Draft, Future, UglyUrls, Verbose, Logging, VerboseLog, DisableRSS, DisableSitemap, PluralizeListTitles, NoTimes bool
 var Source, Destination, Theme, BaseUrl, CfgFile, LogFile string
 
 func Execute() {
@@ -87,6 +87,7 @@ func init() {
        HugoCmd.PersistentFlags().BoolVar(&nitro.AnalysisOn, "stepAnalysis", false, "display memory and timing of different steps of the program")
        HugoCmd.PersistentFlags().BoolVar(&PluralizeListTitles, "pluralizeListTitles", true, "Pluralize titles in lists using inflect")
        HugoCmd.Flags().BoolVarP(&BuildWatch, "watch", "w", false, "watch filesystem for changes and recreate as needed")
+       HugoCmd.Flags().BoolVarP(&NoTimes, "noTimes", "", false, "Don't sync modification time of files")
        hugoCmdV = HugoCmd
 }
 
@@ -225,6 +226,7 @@ func copyStatic() error {
        publishDir := helpers.AbsPathify(viper.GetString("PublishDir")) + "/"
 
        syncer := fsync.NewSyncer()
+       syncer.NoTimes = viper.GetBool("notimes")
        syncer.SrcFs = hugofs.SourceFs
        syncer.DestFs = hugofs.DestinationFS