Skip to content

Commit

Permalink
download dir contains platform name
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Dec 11, 2024
1 parent de3fc92 commit 9944be3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/ayon_third_party/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ class ToolDownloadInfo(TypedDict):


CURRENT_DIR = os.path.dirname(os.path.abspath(__file__))
DOWNLOAD_DIR = os.path.join(CURRENT_DIR, "downloads")
DOWNLOAD_DIR = os.path.join(
CURRENT_DIR, "downloads", platform.system().lower()
)
NOT_SET = type("NOT_SET", (), {"__bool__": lambda: False})()
IMPLEMENTED_ARCHIVE_FORMATS = {
".zip", ".tar", ".tgz", ".tar.gz", ".tar.xz", ".tar.bz2"
Expand Down

0 comments on commit 9944be3

Please sign in to comment.