decentral1se 3 years ago
parent
commit
73d92ec828
No known key found for this signature in database GPG Key ID: 3789458B3D0C410
  1. 15
      distribusi.go

15
distribusi.go

@ -340,7 +340,7 @@ Example:
func distribusify(c *cli.Context, root string, ignore []string) error { func distribusify(c *cli.Context, root string, ignore []string) error {
var allDirs []string var allDirs []string
progress := mkProgressBar() progress := mkProgressBar(c)
if err := filepath.Walk(root, func(fpath string, finfo os.FileInfo, err error) error { if err := filepath.Walk(root, func(fpath string, finfo os.FileInfo, err error) error {
@ -782,8 +782,6 @@ func serveHTTP(fpath string) error {
fs := http.FileServer(http.Dir(fpath)) fs := http.FileServer(http.Dir(fpath))
http.Handle("/", fs) http.Handle("/", fs)
logrus.Infof("distribusi serving from http://localhost%s", port)
if err := http.ListenAndServe(port, nil); err != nil { if err := http.ListenAndServe(port, nil); err != nil {
return err return err
} }
@ -859,9 +857,16 @@ func getLogFile() (*os.File, error) {
// mkProgressBar creates a customised progress bar. This bar is used to give // mkProgressBar creates a customised progress bar. This bar is used to give
// real-time updates on the progress of running distribusi. // real-time updates on the progress of running distribusi.
func mkProgressBar() *progressbar.ProgressBar { func mkProgressBar(c *cli.Context) *progressbar.ProgressBar {
var description string
if c.Bool("serve") {
description = fmt.Sprintf("distribusifying... live @ http://localhost%s", port)
} else {
description = "distribusifying..."
}
bar := progressbar.NewOptions(-1, bar := progressbar.NewOptions(-1,
progressbar.OptionSetDescription("distribusifying..."), progressbar.OptionSetDescription(description),
progressbar.OptionSetWriter(ansi.NewAnsiStdout()), progressbar.OptionSetWriter(ansi.NewAnsiStdout()),
progressbar.OptionEnableColorCodes(true), progressbar.OptionEnableColorCodes(true),
progressbar.OptionShowCount(), progressbar.OptionShowCount(),

Loading…
Cancel
Save