Release 2.3.3 to master #204

Merged
sloum merged 86 commits from develop into master 2020-11-20 04:38:12 +00:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit 1ae3312ad6 - Show all commits

View File

@ -346,7 +346,11 @@ func (c *client) simpleCommand(action string) {
case "HELP", "?":
c.Visit(helplocation)
case "VERSION":
c.SetMessage("Bombadillo version: " + version, false)
ver := version
if ver == "" {
ver = "Improperly compiled, no version information"
}
c.SetMessage("Bombadillo version: " + ver, false)
c.DrawMessage()
default:
c.SetMessage(syntaxErrorMessage(action), true)