sam
18
This bit has changed recently too:
else if (show_welcome_message) {
strcpy(s, TELETYPE_VERSION ": ");
strcat(s, git_version);
show_welcome_message = false;
}
Try changing it to:
else if (show_welcome_message) {
strcpy(s, TELETYPE_VERSION ": ");
// strcat(s, git_version);
show_welcome_message = false;
}
edit: I reckon it is this, it’s trying to include your tag in the version string, and it’s ending up too long.
1 Like