Skip to content

Commit

Permalink
fix for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
barbibulle committed Nov 25, 2023
1 parent dc26485 commit 63e4deb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tasks/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ def rebuild(ctx, clean = False):

@task(rebuild)
def sdk(ctx):
ctx.run("python3 Scripts/SdkPackager.py")
if sys.platform == "win32":
python = "python"
else:
python = "python3"
ctx.run(f"{python} Scripts/SdkPackager.py")

0 comments on commit 63e4deb

Please sign in to comment.