mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-06 14:38:05 +01:00
Don't ship filenames with colons in them
This commit is contained in:
parent
501ff9e1ba
commit
be1340e476
2 changed files with 15 additions and 0 deletions
6
proton
6
proton
|
|
@ -764,6 +764,12 @@ class CompatData:
|
|||
|
||||
self.migrate_user_paths()
|
||||
|
||||
if not os.path.lexists(self.prefix_dir + "/dosdevices/c:"):
|
||||
os.symlink("../drive_c", self.prefix_dir + "/dosdevices/c:")
|
||||
|
||||
if not os.path.lexists(self.prefix_dir + "/dosdevices/z:"):
|
||||
os.symlink("/", self.prefix_dir + "/dosdevices/z:")
|
||||
|
||||
# collect configuration info
|
||||
steamdir = os.environ["STEAM_COMPAT_CLIENT_INSTALL_PATH"]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue