Commit 20c1966
Changed files (1)
command.go
@@ -52,6 +52,7 @@ func setUserName(command Command) error {
return fmt.Errorf("Could not set the user due to empty username.")
}
clientConfig.USER = command.PositionalParameters[0]
+ setStatusBar(fmt.Sprintf("User name set to %s", COLOR_BLUE+command.PositionalParameters[0]+COLOR_RESET))
return nil
}