Skip to content

Commit

Permalink
Fix format.py to use jit-format.exe, not jit-format.bat (#61334)
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceForstall authored Nov 9, 2021
1 parent 768f200 commit be2b009
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 be2b009

Please sign in to comment.