func main() { kingpin.CommandLine.HelpFlag.Short('h') kingpin.Version(modd.Version) kingpin.Parse() if *ignores { for _, patt := range modd.CommonExcludes { fmt.Println(patt) } os.Exit(0) } log := termlog.NewLog() if *debug { log.Enable("debug") moddwatch.Logger = log } notifiers := []notify.Notifier{} if *doNotify { n := notify.PlatformNotifier() if n == nil { log.Shout("Could not find a desktop notifier") } else { notifiers = append(notifiers, n) } } if *beep { notifiers = append(notifiers, ¬ify.BeepNotifier{}) } mr, err := modd.NewModRunner(*file, log, notifiers, !(*noconf)) if err != nil { log.Shout("%s", err) return } if *prep { err := mr.PrepOnly(true) if err != nil { log.Shout("%s", err) } } else { err = mr.Run() if err != nil { log.Shout("%s", err) } } }
func main() { kingpin.Version(modd.Version) kingpin.Parse() if *ignores { for _, patt := range modd.CommonExcludes { fmt.Println(patt) } os.Exit(0) } log := termlog.NewLog() if *debug { log.Enable("debug") watch.Logger = log } ret, err := ioutil.ReadFile(*file) if err != nil { kingpin.Fatalf("%s", err) } cnf, err := conf.Parse(*file, string(ret)) if err != nil { kingpin.Fatalf("%s", err) } watchfile := *file if *noconf { watchfile = "" } notifiers := []notify.Notifier{} if *doNotify { n := notify.PlatformNotifier() if n == nil { log.Shout("Could not find a desktop notifier") } else { notifiers = append(notifiers, n) } } if *beep { notifiers = append(notifiers, ¬ify.BeepNotifier{}) } if *prep { err := modd.PrepOnly(log, cnf, notifiers) if err != nil { log.Shout("%s", err) } } else { for { cnf.CommonExcludes(modd.CommonExcludes) cnf, err = modd.Run(log, cnf, watchfile, notifiers) if err != nil { log.Shout("%s", err) break } if cnf == nil { break } } } }