Skip to content

Commit

Permalink
Fix format.py to use jit-format.exe, not jit-format.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceForstall committed Nov 8, 2021
1 parent 7144c2f commit dca7f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/Common/scripts/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def main(argv):
if platform == 'Linux' or platform == 'OSX':
jitformat = os.path.join(jitformat, "jit-format")
elif platform == 'windows':
jitformat = os.path.join(jitformat,"jit-format.bat")
jitformat = os.path.join(jitformat,"jit-format.exe")
errorMessage = ""

builds = ["Checked", "Debug", "Release"]
Expand Down

0 comments on commit dca7f10

Please sign in to comment.