Skip to content

Commit

Permalink
fix: Run with pybun explicitly to not rely on a potential existing bu…
Browse files Browse the repository at this point in the history
…n installation
  • Loading branch information
ducdetronquito committed Oct 14, 2024
1 parent ef4b154 commit 2f6503f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyright_alright/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
def pyright():
pyright_alright_directory = path.dirname(path.realpath(__file__))
pyright_index = path.join(pyright_alright_directory, "pyright/index.js")
return_code = subprocess.call(["bun", "run", pyright_index, *sys.argv[1:]])
return_code = subprocess.call(["pybun", "run", pyright_index, *sys.argv[1:]])

sys.exit(return_code)

Expand Down

0 comments on commit 2f6503f

Please sign in to comment.