diff --git a/client/lib/lib.go b/client/lib/lib.go index d81d03b..6fd3019 100644 --- a/client/lib/lib.go +++ b/client/lib/lib.go @@ -206,11 +206,7 @@ func isBashWeirdness(cmd string) bool { // Bash has this weird behavior where the it has entries like `#1664342754` in the // history file. We want to skip these. firstCommandBugRegex := regexp.MustCompile(`^#\d+\s+$`) - result := firstCommandBugRegex.MatchString(cmd) - if result { - fmt.Println("BASH: " + cmd) - } - return result + return firstCommandBugRegex.MatchString(cmd) } func buildRegexFromTimeFormat(timeFormat string) string {