Skip to content

Commit

Permalink
Fixed vigembus install bug on windows 11
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbouteiller committed Feb 6, 2022
1 parent 3b3caa5 commit 20e35a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# Prompt installation of the ViGEmBus driver (blocking call)
if sys.argv[1] != 'egg_info' and sys.argv[1] != 'sdist':
subprocess.call('msiexec /i %s' % str(pathMsi), shell=True)
subprocess.call(['msiexec', '/i', '%s' % str(pathMsi)], shell=True)

with open("README.md", "r") as fh:
long_description = fh.read()
Expand Down

0 comments on commit 20e35a1

Please sign in to comment.