Skip to content

Commit

Permalink
always append "qtc-sdk" to the given install path
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Apr 7, 2024
1 parent 99f41c3 commit 914546f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,9 @@ def qt_download_check_extract(cfg, dir_install):

dir_install = args.install_path
if not dir_install:
dir_install = os.path.join(tempfile.gettempdir(), "qtc_sdk")
dir_install = os.path.join(tempfile.gettempdir())

dir_install = os.path.join(dir_install, "qtc-sdk")

os.makedirs(dir_install, exist_ok=True)

Expand Down

0 comments on commit 914546f

Please sign in to comment.