Skip to content

Commit

Permalink
Tweak to work better on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
boyter committed Feb 9, 2018
1 parent 2941ec5 commit 33fc96b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion parsers/guesser.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"os"
"path/filepath"
"regexp"
"runtime"
"sort"
"strconv"
"strings"
Expand Down Expand Up @@ -328,7 +329,7 @@ func Process() {
s.Writer = os.Stderr
s.Prefix = "Processing... "

if strings.ToLower(Format) != "progress" {
if strings.ToLower(Format) != "progress" && runtime.GOOS != "windows" {
s.Start()
}

Expand Down

0 comments on commit 33fc96b

Please sign in to comment.