Skip to content

Commit

Permalink
- Fixed tool not working in paths that contain spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
DJSchaffner committed Oct 21, 2020
1 parent adb5db2 commit 9764205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def _download_depot(self, username: str, password: str, version: int, depot_id:
"""Download a specific depot using the manifest id from steam using the given credentials."""
success = False
depot_downloader_path = str(utils.resource_path("DepotDownloader/DepotDownloader.dll").absolute())
args = ["dotnet", depot_downloader_path,
args = ["dotnet", f'"{depot_downloader_path}"',
"-app", str(self.app_id),
"-depot", str(depot_id),
"-manifest", str(manifest_id),
Expand Down

0 comments on commit 9764205

Please sign in to comment.