removed unnecessary dependancies

changed logger.red to logger.error
This commit is contained in:
Bryn Sinclair
2019-05-10 21:06:58 +12:00
parent e1b729ea96
commit 43f9b141fe
3 changed files with 1 additions and 4 deletions

View File

@@ -291,7 +291,7 @@ func CheckDependencies(logger *Logger) (bool, error) {
}
if !installed {
errors = true
logger.Red("Library '%s' not found. %s", library.Name, library.Help)
logger.Error("Library '%s' not found. %s", library.Name, library.Help)
} else {
logger.Green("Library '%s' installed.", library.Name)
}