[2.5.1.1] DLCs not showing on Linux
Description:
When I reinstalled my game on Linux after having some problems with the previous version, I saw that I couldn't find any DLC within the launcher.
Mods: I do not currently use any mods.
Reproduction Steps:
1. Install the game
Working solution:
Rename the folder from DLC to dlc
Dev to dev talk:
Linux and Mac file systems are case sensitive. You should rename your folder with the correct casing. If you use git (I don't know, but that's what I'm using with Jira and BitBucket), do not hesitate to do a "git rm DLC/*" to remove the entire folder from your source control, push the modifications, and add it back. It'll recreate the folder on the remote server with the correct casing.
The other solution is to edit the part of code where you're constructing the path, either to change it from "DLC" to "dlc", or, more flexible, use a [Dd][Ll][Cc] regex to match any form of this path.
Description:
When I reinstalled my game on Linux after having some problems with the previous version, I saw that I couldn't find any DLC within the launcher.
Mods: I do not currently use any mods.
Reproduction Steps:
1. Install the game
Working solution:
Rename the folder from DLC to dlc
Dev to dev talk:
Linux and Mac file systems are case sensitive. You should rename your folder with the correct casing. If you use git (I don't know, but that's what I'm using with Jira and BitBucket), do not hesitate to do a "git rm DLC/*" to remove the entire folder from your source control, push the modifications, and add it back. It'll recreate the folder on the remote server with the correct casing.
The other solution is to edit the part of code where you're constructing the path, either to change it from "DLC" to "dlc", or, more flexible, use a [Dd][Ll][Cc] regex to match any form of this path.
Upvote
0