Skip to content
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

fix: Steam and Proton usage #2961

Merged
merged 5 commits into from
Aug 5, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into bottlesdevs-pr
  • Loading branch information
mirkobrombin authored Aug 5, 2023
commit 5c843497aace135fa4da4978dede9ab7de52589c
2 changes: 1 addition & 1 deletion bottles/backend/managers/steam.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def list_prefixes(self) -> Dict[str, BottleConfig]:
_conf.Path = os.path.join(_path, "pfx")
_conf.Runner = os.path.basename(_runner_path)
_conf.RunnerPath = _runner_path
_conf.WorkingDir = os.path.join(_conf["Path"], "drive_c")
_conf.WorkingDir = os.path.join(_conf.get("Path", ""), "drive_c")
_conf.Creation_Date = _creation_date
_conf.Update_Date = datetime.fromtimestamp(
int(_acf["AppState"].get("LastUpdated", 0))
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.