-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing in wrong directory for BG3, Linux. #2202
Comments
I have made a pull request regarding this in @erri120's game finder that he linked. |
Is it definitely always lowercase or is that a quirk of your personal setup? I only ask because we've had a fair few Linux testers and this hasn't come up before. |
I believe it is always, yes. It was like this before I reinstalled arch last week, it is like that on my bazzite pc and obviously on my current install of arch. But, if you are really skepticall you could just look for both "User" and "user" and use the one that is found. |
Bug Report
Summary
(Summarize the bug encountered concisely ensuring you state the current behaviour)
When installing a mod for bg3, it installs the mod to ".../drive_c/Users/steamuser/..." and not ".../drive_c/users/steamuser/..."
.../ is meant to show there are other directories before and /... is meant to show after. Anyway, this may seem trivial at first, however Linux is a case sensitive operating system so they are treated as entirely different directories.
Steps to reproduce
(How one can reproduce the issue - this is very important)
Install/activate a mod for bg3 (don't know if this happens for other games) and watch it create "Users" folder (and sub-directories) in ".../1086940/pfx/drive_c/".
What is the expected behaviour?
(What did you expect to happen instead?)
Installing the mods to "users" instead of "Users".
Other information
(Logs, screenshots, possible fixes, expected behaviour, etc.)
Just change the part in the code that says ".../pfx/drive_c/Users/..." to ".../pfx/drive_c/users/..."
My temporary fix is:
export bg3="$HOME/.local/share/Steam/steamapps/compatdata/1086940/pfx/drive_c/"
rm -rf $bg3/Users
ln -s $bg3/Users $bg3/users
I don't think I need to show logs?.
The text was updated successfully, but these errors were encountered: