diff --git a/actions.go b/actions.go index 2167d19e..e4287797 100644 --- a/actions.go +++ b/actions.go @@ -225,10 +225,10 @@ func LocalStatistics(version string) error { for _, res := range q { if res.Maintainer == "" { - fmt.Printf("\x1b[1;31;40mWarning: \x1B[1;33;40m%s\x1b[0;;40m is orphaned.\x1b[0m\n", res.Name) + fmt.Printf("\x1b[1;31;40mWarning: \x1B[1;33;40m%s\x1b[0;37;40m is orphaned.\x1b[0m\n", res.Name) } if res.OutOfDate != 0 { - fmt.Printf("\x1b[1;31;40mWarning: \x1B[1;33;40m%s\x1b[0;;40m is out-of-date in AUR.\x1b[0m\n", res.Name) + fmt.Printf("\x1b[1;31;40mWarning: \x1B[1;33;40m%s\x1b[0;37;40m is out-of-date in AUR.\x1b[0m\n", res.Name) } } diff --git a/util/util.go b/util/util.go index 2b502f3a..9b0f0113 100644 --- a/util/util.go +++ b/util/util.go @@ -127,7 +127,7 @@ func Editor() string { } else if os.Getenv("VISUAL") != "" { return os.Getenv("VISUAL") } else { - fmt.Printf("\x1b[1;31;40mWarning: \x1B[1;33;40m$EDITOR\x1b[0;;40m is not set.\x1b[0m\nPlease add $EDITOR or to your environment variables.\n") + fmt.Printf("\x1b[1;31;40mWarning: \x1B[1;33;40m$EDITOR\x1b[0;37;40m is not set.\x1b[0m\nPlease add $EDITOR or to your environment variables.\n") editorLoop: fmt.Printf("\x1b[32m%s\x1b[0m ", "Edit PKGBUILD with:")